In [1]:
# import libs
import requests
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
import os
import tweepy
from tweepy import OAuthHandler
from timeit import default_timer as timer
import json
import seaborn as sns
import time
import matplotlib.patches as mpatches
pd.set_option("display.max_rows", None, "display.max_columns", None, "display.max_colwidth", None)

Gathering Data

sources:

  • Twitter-archive-enhanced.csv
  • Image-predictions.tsv (download it from udacity's server)
  • Twitter API (using tweet-json.txt)

Twitter-archive-enhanced.csv

In [2]:
# Twitter-archive-enhanced.csv
twitter_archive_df = pd.read_csv('twitter-archive-enhanced.csv')
In [3]:
twitter_archive_df.head()
Out[3]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU NaN NaN NaN https://twitter.com/dog_rates/status/892420643555336193/photo/1 13 10 Phineas None None None None
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV NaN NaN NaN https://twitter.com/dog_rates/status/892177421306343426/photo/1 13 10 Tilly None None None None
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB NaN NaN NaN https://twitter.com/dog_rates/status/891815181378084864/photo/1 12 10 Archie None None None None
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ NaN NaN NaN https://twitter.com/dog_rates/status/891689557279858688/photo/1 13 10 Darla None None None None
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f NaN NaN NaN https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 12 10 Franklin None None None None

Image-predication (download it from the server)

In [4]:
folder_name = 'Image-predictions'
url = 'https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv'
response = requests.get(url)

# Make directory if it doesn't already exist
if not os.path.exists(folder_name):
    os.makedirs(folder_name)
# Write image prediction file (tsv)
with open(os.path.join(folder_name,url.split("/")[-1]), mode='wb') as file:
    file.write(response.content)
        
In [5]:
# check if the file download successfully
os.listdir(folder_name)
Out[5]:
['image-predictions.tsv']
In [6]:
image_predictions_df = pd.read_csv(folder_name + "/image-predictions.tsv", sep='\t')
image_predictions_df.head()
Out[6]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 0.156665 True Shetland_sheepdog 0.061428 True
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 0.074192 True Rhodesian_ridgeback 0.072010 True
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 0.138584 True bloodhound 0.116197 True
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 0.360687 True miniature_pinscher 0.222752 True
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 0.243682 True Doberman 0.154629 True

Twitter API (using tweet-json.txt)

In [7]:
# Query Twitter API for each tweet in the Twitter archive and save JSON in a text file
# These are hidden to comply with Twitter's API terms and conditions
consumer_key = 'XXXXXXX'
consumer_secret = 'XXXXXXX'
access_token = 'XXXXXXX'
access_secret = 'XXXXXXX'

auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)

api = tweepy.API(auth, wait_on_rate_limit=True)
In [8]:
# NOTE TO STUDENT WITH MOBILE VERIFICATION ISSUES:
# df_1 is a DataFrame with the twitter_archive_enhanced.csv file. You may have to
# change line 17 to match the name of your DataFrame with twitter_archive_enhanced.csv
# NOTE TO REVIEWER: this student had mobile verification issues so the following
# Twitter API code was sent to this student from a Udacity instructor
# Tweet IDs for which to gather additional data via Twitter's API
#tweet_ids = df_1.tweet_id.values
#len(tweet_ids)
In [9]:
# Query Twitter's API for JSON data for each tweet ID in the Twitter archive
#count = 0
#fails_dict = {}
#start = timer()
## Save each tweet's returned JSON as a new line in a .txt file
#with open('tweet_json.txt', 'w') as outfile:
#    # This loop will likely take 20-30 minutes to run because of Twitter's rate limit
#    for tweet_id in tweet_ids:
#        count += 1
#        print(str(count) + ": " + str(tweet_id))
#        try:
#            tweet = api.get_status(tweet_id, tweet_mode='extended')
#            print("Success")
#            json.dump(tweet._json, outfile)
#            outfile.write('\n')
#        except tweepy.TweepError as e:
#            print("Fail")
#            fails_dict[tweet_id] = e
#            pass
#end = timer()
#print(end - start)
#print(fails_dict)

Read from json file

In [10]:
tweet_df = pd.read_json('tweet-json.txt', lines=True)
tweet_df.head()
Out[10]:
created_at id id_str full_text truncated display_text_range entities extended_entities source in_reply_to_status_id in_reply_to_status_id_str in_reply_to_user_id in_reply_to_user_id_str in_reply_to_screen_name user geo coordinates place contributors is_quote_status retweet_count favorite_count favorited retweeted possibly_sensitive possibly_sensitive_appealable lang retweeted_status quoted_status_id quoted_status_id_str quoted_status
0 2017-08-01 16:23:56+00:00 892420643555336193 892420643555336192 This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU False [0, 85] {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 892420639486877696, 'id_str': '892420639486877696', 'indices': [86, 109], 'media_url': 'http://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'url': 'https://t.co/MgUWQ76dJU', 'display_url': 'pic.twitter.com/MgUWQ76dJU', 'expanded_url': 'https://twitter.com/dog_rates/status/892420643555336193/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 540, 'h': 528, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 540, 'h': 528, 'resize': 'fit'}, 'medium': {'w': 540, 'h': 528, 'resize': 'fit'}}}]} {'media': [{'id': 892420639486877696, 'id_str': '892420639486877696', 'indices': [86, 109], 'media_url': 'http://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'url': 'https://t.co/MgUWQ76dJU', 'display_url': 'pic.twitter.com/MgUWQ76dJU', 'expanded_url': 'https://twitter.com/dog_rates/status/892420643555336193/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 540, 'h': 528, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 540, 'h': 528, 'resize': 'fit'}, 'medium': {'w': 540, 'h': 528, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 8853 39467 False False 0.0 0.0 en NaN NaN NaN NaN
1 2017-08-01 00:17:27+00:00 892177421306343426 892177421306343424 This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV False [0, 138] {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 892177413194625024, 'id_str': '892177413194625024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'url': 'https://t.co/0Xxu71qeIV', 'display_url': 'pic.twitter.com/0Xxu71qeIV', 'expanded_url': 'https://twitter.com/dog_rates/status/892177421306343426/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1407, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 598, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1055, 'h': 1200, 'resize': 'fit'}}}]} {'media': [{'id': 892177413194625024, 'id_str': '892177413194625024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'url': 'https://t.co/0Xxu71qeIV', 'display_url': 'pic.twitter.com/0Xxu71qeIV', 'expanded_url': 'https://twitter.com/dog_rates/status/892177421306343426/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1407, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 598, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1055, 'h': 1200, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 6514 33819 False False 0.0 0.0 en NaN NaN NaN NaN
2 2017-07-31 00:18:03+00:00 891815181378084864 891815181378084864 This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB False [0, 121] {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891815175371796480, 'id_str': '891815175371796480', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'url': 'https://t.co/wUnZnhtVJB', 'display_url': 'pic.twitter.com/wUnZnhtVJB', 'expanded_url': 'https://twitter.com/dog_rates/status/891815181378084864/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]} {'media': [{'id': 891815175371796480, 'id_str': '891815175371796480', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'url': 'https://t.co/wUnZnhtVJB', 'display_url': 'pic.twitter.com/wUnZnhtVJB', 'expanded_url': 'https://twitter.com/dog_rates/status/891815181378084864/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 4328 25461 False False 0.0 0.0 en NaN NaN NaN NaN
3 2017-07-30 15:58:51+00:00 891689557279858688 891689557279858688 This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ False [0, 79] {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891689552724799489, 'id_str': '891689552724799489', 'indices': [80, 103], 'media_url': 'http://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'url': 'https://t.co/tD36da7qLQ', 'display_url': 'pic.twitter.com/tD36da7qLQ', 'expanded_url': 'https://twitter.com/dog_rates/status/891689557279858688/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]} {'media': [{'id': 891689552724799489, 'id_str': '891689552724799489', 'indices': [80, 103], 'media_url': 'http://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'url': 'https://t.co/tD36da7qLQ', 'display_url': 'pic.twitter.com/tD36da7qLQ', 'expanded_url': 'https://twitter.com/dog_rates/status/891689557279858688/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 8964 42908 False False 0.0 0.0 en NaN NaN NaN NaN
4 2017-07-29 16:00:24+00:00 891327558926688256 891327558926688256 This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f False [0, 138] {'hashtags': [{'text': 'BarkWeek', 'indices': [129, 138]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891327551943041024, 'id_str': '891327551943041024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'url': 'https://t.co/AtUZn91f7f', 'display_url': 'pic.twitter.com/AtUZn91f7f', 'expanded_url': 'https://twitter.com/dog_rates/status/891327558926688256/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 720, 'h': 540, 'resize': 'fit'}}}]} {'media': [{'id': 891327551943041024, 'id_str': '891327551943041024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'url': 'https://t.co/AtUZn91f7f', 'display_url': 'pic.twitter.com/AtUZn91f7f', 'expanded_url': 'https://twitter.com/dog_rates/status/891327558926688256/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 720, 'h': 540, 'resize': 'fit'}}}, {'id': 891327551947157504, 'id_str': '891327551947157504', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg', 'url': 'https://t.co/AtUZn91f7f', 'display_url': 'pic.twitter.com/AtUZn91f7f', 'expanded_url': 'https://twitter.com/dog_rates/status/891327558926688256/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 720, 'h': 540, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 9774 41048 False False 0.0 0.0 en NaN NaN NaN NaN

Assessing Data

twitter_archive_df

In [11]:
twitter_archive_df.head()
Out[11]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU NaN NaN NaN https://twitter.com/dog_rates/status/892420643555336193/photo/1 13 10 Phineas None None None None
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV NaN NaN NaN https://twitter.com/dog_rates/status/892177421306343426/photo/1 13 10 Tilly None None None None
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB NaN NaN NaN https://twitter.com/dog_rates/status/891815181378084864/photo/1 12 10 Archie None None None None
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ NaN NaN NaN https://twitter.com/dog_rates/status/891689557279858688/photo/1 13 10 Darla None None None None
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f NaN NaN NaN https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 12 10 Franklin None None None None
In [12]:
twitter_archive_df
Out[12]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU NaN NaN NaN https://twitter.com/dog_rates/status/892420643555336193/photo/1 13 10 Phineas None None None None
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV NaN NaN NaN https://twitter.com/dog_rates/status/892177421306343426/photo/1 13 10 Tilly None None None None
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB NaN NaN NaN https://twitter.com/dog_rates/status/891815181378084864/photo/1 12 10 Archie None None None None
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ NaN NaN NaN https://twitter.com/dog_rates/status/891689557279858688/photo/1 13 10 Darla None None None None
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f NaN NaN NaN https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 12 10 Franklin None None None None
5 891087950875897856 NaN NaN 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh NaN NaN NaN https://twitter.com/dog_rates/status/891087950875897856/photo/1 13 10 None None None None None
6 890971913173991426 NaN NaN 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl NaN NaN NaN https://gofundme.com/ydvmve-surgery-for-jax,https://twitter.com/dog_rates/status/890971913173991426/photo/1 13 10 Jax None None None None
7 890729181411237888 NaN NaN 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq NaN NaN NaN https://twitter.com/dog_rates/status/890729181411237888/photo/1,https://twitter.com/dog_rates/status/890729181411237888/photo/1 13 10 None None None None None
8 890609185150312448 NaN NaN 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b NaN NaN NaN https://twitter.com/dog_rates/status/890609185150312448/photo/1 13 10 Zoey None None None None
9 890240255349198849 NaN NaN 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A NaN NaN NaN https://twitter.com/dog_rates/status/890240255349198849/photo/1 14 10 Cassie doggo None None None
10 890006608113172480 NaN NaN 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme NaN NaN NaN https://twitter.com/dog_rates/status/890006608113172480/photo/1,https://twitter.com/dog_rates/status/890006608113172480/photo/1 13 10 Koda None None None None
11 889880896479866881 NaN NaN 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g NaN NaN NaN https://twitter.com/dog_rates/status/889880896479866881/photo/1 13 10 Bruno None None None None
12 889665388333682689 NaN NaN 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm NaN NaN NaN https://twitter.com/dog_rates/status/889665388333682689/photo/1 13 10 None None None None puppo
13 889638837579907072 NaN NaN 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR NaN NaN NaN https://twitter.com/dog_rates/status/889638837579907072/photo/1,https://twitter.com/dog_rates/status/889638837579907072/photo/1 12 10 Ted None None None None
14 889531135344209921 NaN NaN 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq NaN NaN NaN https://twitter.com/dog_rates/status/889531135344209921/photo/1 13 10 Stuart None None None puppo
15 889278841981685760 NaN NaN 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb NaN NaN NaN https://twitter.com/dog_rates/status/889278841981685760/video/1 13 10 Oliver None None None None
16 888917238123831296 NaN NaN 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN NaN NaN NaN https://twitter.com/dog_rates/status/888917238123831296/photo/1 12 10 Jim None None None None
17 888804989199671297 NaN NaN 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K NaN NaN NaN https://twitter.com/dog_rates/status/888804989199671297/photo/1,https://twitter.com/dog_rates/status/888804989199671297/photo/1 13 10 Zeke None None None None
18 888554962724278272 NaN NaN 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK NaN NaN NaN https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1 13 10 Ralphus None None None None
19 888202515573088257 NaN NaN 2017-07-21 01:02:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX 8.874740e+17 4.196984e+09 2017-07-19 00:47:34 +0000 https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 13 10 Canela None None None None
20 888078434458587136 NaN NaN 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX NaN NaN NaN https://twitter.com/dog_rates/status/888078434458587136/photo/1,https://twitter.com/dog_rates/status/888078434458587136/photo/1 12 10 Gerald None None None None
21 887705289381826560 NaN NaN 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64 NaN NaN NaN https://twitter.com/dog_rates/status/887705289381826560/photo/1 13 10 Jeffrey None None None None
22 887517139158093824 NaN NaN 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba NaN NaN NaN https://twitter.com/dog_rates/status/887517139158093824/video/1 14 10 such None None None None
23 887473957103951883 NaN NaN 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX NaN NaN NaN https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 13 10 Canela None None None None
24 887343217045368832 NaN NaN 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV NaN NaN NaN https://twitter.com/dog_rates/status/887343217045368832/video/1 13 10 None None None None None
25 887101392804085760 NaN NaN 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp NaN NaN NaN https://twitter.com/dog_rates/status/887101392804085760/photo/1 12 10 None None None None None
26 886983233522544640 NaN NaN 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT NaN NaN NaN https://twitter.com/dog_rates/status/886983233522544640/photo/1,https://twitter.com/dog_rates/status/886983233522544640/photo/1 13 10 Maya None None None None
27 886736880519319552 NaN NaN 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b NaN NaN NaN https://www.gofundme.com/mingusneedsus,https://twitter.com/dog_rates/status/886736880519319552/photo/1,https://twitter.com/dog_rates/status/886736880519319552/photo/1 13 10 Mingus None None None None
28 886680336477933568 NaN NaN 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Derek. He's late for a dog meeting. 13/10 pet...al to the metal https://t.co/BCoWue0abA NaN NaN NaN https://twitter.com/dog_rates/status/886680336477933568/photo/1 13 10 Derek None None None None
29 886366144734445568 NaN NaN 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox NaN NaN NaN https://twitter.com/dog_rates/status/886366144734445568/photo/1,https://twitter.com/dog_rates/status/886366144734445568/photo/1 12 10 Roscoe None None pupper None
30 886267009285017600 8.862664e+17 2.281182e+09 2017-07-15 16:51:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution NaN NaN NaN NaN 12 10 None None None None None
31 886258384151887873 NaN NaN 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O NaN NaN NaN https://twitter.com/dog_rates/status/886258384151887873/photo/1 13 10 Waffles None None None None
32 886054160059072513 NaN NaN 2017-07-15 02:45:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @Athletics: 12/10 #BATP https://t.co/WxwJmvjfxo 8.860537e+17 1.960740e+07 2017-07-15 02:44:07 +0000 https://twitter.com/dog_rates/status/886053434075471873,https://twitter.com/dog_rates/status/886053434075471873 12 10 None None None None None
33 885984800019947520 NaN NaN 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1 NaN NaN NaN https://twitter.com/dog_rates/status/885984800019947520/photo/1 12 10 Jimbo None None None None
34 885528943205470208 NaN NaN 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF NaN NaN NaN https://twitter.com/dog_rates/status/885528943205470208/photo/1 13 10 Maisey None None None None
35 885518971528720385 NaN NaN 2017-07-13 15:19:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I have a new hero and his name is Howard. 14/10 https://t.co/gzLHboL7Sk NaN NaN NaN https://twitter.com/4bonds2carbon/status/885517367337512960 14 10 None None None None None
36 885311592912609280 NaN NaN 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 8.305833e+17 4.196984e+09 2017-02-12 01:04:29 +0000 https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1 13 10 Lilly None None None None
37 885167619883638784 NaN NaN 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 https://t.co/44ItaMubBf NaN NaN NaN https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1 13 10 None None None None None
38 884925521741709313 NaN NaN 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa NaN NaN NaN https://twitter.com/dog_rates/status/884925521741709313/photo/1 12 10 Earl None None None None
39 884876753390489601 NaN NaN 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO NaN NaN NaN https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1 13 10 Lola None None None None
40 884562892145688576 NaN NaN 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5 NaN NaN NaN https://twitter.com/dog_rates/status/884562892145688576/photo/1 13 10 Kevin None None None None
41 884441805382717440 NaN NaN 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC NaN NaN NaN https://twitter.com/dog_rates/status/884441805382717440/photo/1 14 10 None None None None None
42 884247878851493888 NaN NaN 2017-07-10 03:08:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LITTLE BARKOUR HE'S SUPER SORRY 13/10 WOULD FORGIVE IMMEDIATE https://t.co/uF3pQ8Wubj NaN NaN NaN https://twitter.com/kaijohnson_19/status/883965650754039809 13 10 None None None None None
43 884162670584377345 NaN NaN 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ NaN NaN NaN https://twitter.com/dog_rates/status/884162670584377345/photo/1 12 10 Yogi doggo None None None
44 883838122936631299 NaN NaN 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY NaN NaN NaN https://twitter.com/dog_rates/status/883838122936631299/photo/1 12 10 Noah None None None None
45 883482846933004288 NaN NaN 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 NaN NaN NaN https://twitter.com/dog_rates/status/883482846933004288/photo/1,https://twitter.com/dog_rates/status/883482846933004288/photo/1 5 10 Bella None None None None
46 883360690899218434 NaN NaN 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP NaN NaN NaN https://twitter.com/dog_rates/status/883360690899218434/photo/1 13 10 Grizzwald None floofer None None
47 883117836046086144 NaN NaN 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E NaN NaN NaN https://twitter.com/dog_rates/status/883117836046086144/photo/1,https://twitter.com/dog_rates/status/883117836046086144/photo/1 13 10 None None None None None
48 882992080364220416 NaN NaN 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj NaN NaN NaN https://twitter.com/dog_rates/status/882992080364220416/photo/1,https://twitter.com/dog_rates/status/882992080364220416/photo/1 13 10 Rusty None None None None
49 882762694511734784 NaN NaN 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu NaN NaN NaN https://twitter.com/dog_rates/status/882762694511734784/photo/1 12 10 Gus None None pupper None
50 882627270321602560 NaN NaN 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 NaN NaN NaN https://twitter.com/dog_rates/status/882627270321602560/photo/1 13 10 Stanley None None None None
51 882268110199369728 NaN NaN 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA NaN NaN NaN https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1 13 10 Alfy None None None None
52 882045870035918850 NaN NaN 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Koko. Her owner, inspired by Barney, recently built a cart for her to use during walks if she got tired. 13/10 rest easy Koko https://t.co/zeDpnsKX7w NaN NaN NaN https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1 13 10 Koko None None None None
53 881906580714921986 NaN NaN 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ NaN NaN NaN https://twitter.com/dog_rates/status/881906580714921986/photo/1 12 10 Rey None None None None
54 881666595344535552 NaN NaN 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s NaN NaN NaN https://twitter.com/dog_rates/status/881666595344535552/photo/1 13 10 Gary None None None None
55 881633300179243008 8.816070e+17 4.738443e+07 2017-07-02 21:58:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s NaN NaN NaN NaN 17 10 None None None None None
56 881536004380872706 NaN NaN 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF NaN NaN NaN https://twitter.com/dog_rates/status/881536004380872706/video/1 14 10 a None None pupper None
57 881268444196462592 NaN NaN 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Elliot. He's a Canadian Forrest Pup. Unusual number of antlers for a dog. Sneaky tongue slip to celebrate #Canada150. 12/10 would pet https://t.co/cgwJwowTMC NaN NaN NaN https://twitter.com/dog_rates/status/881268444196462592/photo/1 12 10 Elliot None None None None
58 880935762899988482 NaN NaN 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Louis. He's crossing. It's a big deal. 13/10 h*ckin breathtaking https://t.co/D0wb1GlKAt NaN NaN NaN https://twitter.com/dog_rates/status/880935762899988482/photo/1 13 10 Louis None None None None
59 880872448815771648 NaN NaN 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf NaN NaN NaN https://twitter.com/dog_rates/status/880872448815771648/photo/1 12 10 None None None None None
60 880465832366813184 NaN NaN 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw NaN NaN NaN https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1 12 10 Bella None None None None
61 880221127280381952 NaN NaN 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK NaN NaN NaN https://twitter.com/dog_rates/status/880221127280381952/photo/1,https://twitter.com/dog_rates/status/880221127280381952/photo/1 12 10 Jesse None None None None
62 880095782870896641 NaN NaN 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4 NaN NaN NaN https://twitter.com/dog_rates/status/880095782870896641/photo/1 11 10 None None None None None
63 879862464715927552 NaN NaN 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9 NaN NaN NaN https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1 13 10 Romeo None None None None
64 879674319642796034 8.795538e+17 3.105441e+09 2017-06-27 12:14:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @RealKentMurphy 14/10 confirmed NaN NaN NaN NaN 14 10 None None None None None
65 879492040517615616 NaN NaN 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8 NaN NaN NaN https://twitter.com/dog_rates/status/879492040517615616/photo/1 12 10 Bailey None None None None
66 879415818425184262 NaN NaN 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY NaN NaN NaN https://twitter.com/dog_rates/status/879415818425184262/video/1 13 10 Duddles None None None None
67 879376492567855104 NaN NaN 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jack AKA Stephen Furry. You're not scoring on him. Unless he slips down the slide. 12/10 would happily get blocked by https://t.co/0gOi601EAa NaN NaN NaN https://twitter.com/dog_rates/status/879376492567855104/photo/1 12 10 Jack None None None None
68 879130579576475649 NaN NaN 2017-06-26 00:13:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://… 8.780576e+17 4.196984e+09 2017-06-23 01:10:23 +0000 https://twitter.com/dog_rates/status/878057613040115712/photo/1,https://twitter.com/dog_rates/status/878057613040115712/photo/1 14 10 Emmy None None None None
69 879050749262655488 NaN NaN 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Steven. He has trouble relating to other dogs. Quite shy. Neck longer than average. Tropical probably. 11/10 would still pet https://t.co/2mJCDEJWdD NaN NaN NaN https://twitter.com/dog_rates/status/879050749262655488/photo/1 11 10 Steven None None None None
70 879008229531029506 NaN NaN 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN NaN NaN NaN https://twitter.com/dog_rates/status/879008229531029506/photo/1 13 10 Beau None None None None
71 878776093423087618 NaN NaN 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS NaN NaN NaN https://twitter.com/dog_rates/status/878776093423087618/photo/1,https://twitter.com/dog_rates/status/878776093423087618/photo/1 13 10 Snoopy None None None puppo
72 878604707211726852 NaN NaN 2017-06-24 13:24:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Martha is stunning how h*ckin dare you. 13/10 https://t.co/9uABQXgjwa NaN NaN NaN https://twitter.com/bbcworld/status/878599868507402241 13 10 None None None None None
73 878404777348136964 NaN NaN 2017-06-24 00:09:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps:/… 8.782815e+17 4.196984e+09 2017-06-23 16:00:04 +0000 https://www.gofundme.com/3yd6y1c,https://twitter.com/dog_rates/status/878281511006478336/photo/1 13 10 Shadow None None None None
74 878316110768087041 NaN NaN 2017-06-23 18:17:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/i… 6.690004e+17 4.196984e+09 2015-11-24 03:51:38 +0000 https://twitter.com/dog_rates/status/669000397445533696/photo/1 11 10 Terrance None None None None
75 878281511006478336 NaN NaN 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6 NaN NaN NaN https://www.gofundme.com/3yd6y1c,https://twitter.com/dog_rates/status/878281511006478336/photo/1 13 10 Shadow None None None None
76 878057613040115712 NaN NaN 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe NaN NaN NaN https://twitter.com/dog_rates/status/878057613040115712/photo/1,https://twitter.com/dog_rates/status/878057613040115712/photo/1 14 10 Emmy None None None None
77 877736472329191424 NaN NaN 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r NaN NaN NaN https://twitter.com/dog_rates/status/877736472329191424/photo/1,https://twitter.com/dog_rates/status/877736472329191424/photo/1 13 10 Aja None None None None
78 877611172832227328 NaN NaN 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @rachel2195: @dog_rates the boyfriend and his soaking wet pupper h*cking love his new hat 14/10 https://t.co/dJx4Gzc50G 8.768508e+17 5.128045e+08 2017-06-19 17:14:49 +0000 https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1 14 10 None None None pupper None
79 877556246731214848 NaN NaN 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP NaN NaN NaN https://twitter.com/dog_rates/status/877556246731214848/photo/1 12 10 Penny None None None None
80 877316821321428993 NaN NaN 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc NaN NaN NaN https://twitter.com/dog_rates/status/877316821321428993/photo/1,https://twitter.com/dog_rates/status/877316821321428993/photo/1 13 10 Dante None None None None
81 877201837425926144 NaN NaN 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y NaN NaN NaN https://twitter.com/dog_rates/status/877201837425926144/photo/1,https://twitter.com/dog_rates/status/877201837425926144/photo/1 12 10 Nelly None None None None
82 876838120628539392 NaN NaN 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6 NaN NaN NaN https://twitter.com/dog_rates/status/876838120628539392/photo/1,https://twitter.com/dog_rates/status/876838120628539392/photo/1 12 10 Ginger None None pupper None
83 876537666061221889 NaN NaN 2017-06-18 20:30:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu NaN NaN NaN https://twitter.com/mpstowerham/status/876162994446753793 14 10 None None None None None
84 876484053909872640 NaN NaN 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs NaN NaN NaN https://twitter.com/dog_rates/status/876484053909872640/photo/1 13 10 Benedict None None None None
85 876120275196170240 NaN NaN 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek NaN NaN NaN https://twitter.com/dog_rates/status/876120275196170240/photo/1 13 10 Venti None None None None
86 875747767867523072 NaN NaN 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN NaN NaN NaN https://twitter.com/dog_rates/status/875747767867523072/photo/1 13 10 Goose None None None None
87 875144289856114688 NaN NaN 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj NaN NaN NaN https://twitter.com/dog_rates/status/875144289856114688/video/1 13 10 Nugget None None None None
88 875097192612077568 NaN NaN 2017-06-14 21:06:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> You'll get your package when that precious man is done appreciating the pups. 13/10 for everyone https://t.co/PFp4MghzBW NaN NaN NaN https://twitter.com/drboondoc/status/874413398133547008 13 10 None None None None None
89 875021211251597312 NaN NaN 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW NaN NaN NaN https://twitter.com/dog_rates/status/875021211251597312/photo/1,https://twitter.com/dog_rates/status/875021211251597312/photo/1 12 10 None None None None None
90 874680097055178752 NaN NaN 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD NaN NaN NaN https://twitter.com/dog_rates/status/874680097055178752/photo/1 12 10 Cash None None None None
91 874434818259525634 NaN NaN 2017-06-13 01:14:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.c… 8.663350e+17 4.196984e+09 2017-05-21 16:48:45 +0000 https://twitter.com/dog_rates/status/866334964761202691/photo/1,https://twitter.com/dog_rates/status/866334964761202691/photo/1 12 10 Coco None None None None
92 874296783580663808 NaN NaN 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm NaN NaN NaN https://twitter.com/dog_rates/status/874296783580663808/photo/1 13 10 Jed None None pupper None
93 874057562936811520 NaN NaN 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2 NaN NaN NaN https://twitter.com/dog_rates/status/874057562936811520/photo/1 12 10 None None None None None
94 874012996292530176 NaN NaN 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V NaN NaN NaN https://twitter.com/dog_rates/status/874012996292530176/photo/1,https://twitter.com/dog_rates/status/874012996292530176/photo/1 13 10 Sebastian None None None puppo
95 873697596434513921 NaN NaN 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF 8.688804e+17 4.196984e+09 2017-05-28 17:23:24 +0000 https://twitter.com/dog_rates/status/868880397819494401/photo/1,https://twitter.com/dog_rates/status/868880397819494401/photo/1 14 10 Walter None None None None
96 873580283840344065 NaN NaN 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n NaN NaN NaN https://twitter.com/dog_rates/status/873580283840344065/photo/1 13 10 None None None None None
97 873337748698140672 NaN NaN 2017-06-10 00:35:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps:/… 8.732138e+17 4.196984e+09 2017-06-09 16:22:42 +0000 https://www.gofundme.com/help-my-baby-sierra-get-better,https://twitter.com/dog_rates/status/873213775632977920/photo/1,https://twitter.com/dog_rates/status/873213775632977920/photo/1 12 10 Sierra None None pupper None
98 873213775632977920 NaN NaN 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ NaN NaN NaN https://www.gofundme.com/help-my-baby-sierra-get-better,https://twitter.com/dog_rates/status/873213775632977920/photo/1,https://twitter.com/dog_rates/status/873213775632977920/photo/1 12 10 Sierra None None pupper None
99 872967104147763200 NaN NaN 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR NaN NaN NaN https://twitter.com/dog_rates/status/872967104147763200/photo/1,https://twitter.com/dog_rates/status/872967104147763200/photo/1 12 10 None doggo None None None
100 872820683541237760 NaN NaN 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5 NaN NaN NaN https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1 13 10 None None None None None
101 872668790621863937 NaN NaN 2017-06-08 04:17:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @loganamnosis: Penelope here is doing me quite a divertir. Well done, @dog_rates! Loving the pupdate. 14/10, je jouerais de nouveau. htt… 8.726576e+17 1.547674e+08 2017-06-08 03:32:35 +0000 https://twitter.com/loganamnosis/status/872657584259551233/photo/1 14 10 None None None None None
102 872620804844003328 NaN NaN 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9 NaN NaN NaN https://twitter.com/dog_rates/status/872620804844003328/photo/1 13 10 Monkey None None None None
103 872486979161796608 NaN NaN 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ NaN NaN NaN https://twitter.com/dog_rates/status/872486979161796608/photo/1 12 10 None None None None None
104 872261713294495745 NaN NaN 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Harry. His ears are activated one at a time. Incredibly rare to witness in person. Very special moment here. 13/10 blessed as h*ck https://t.co/ejHvGDfWoa NaN NaN NaN https://twitter.com/dog_rates/status/872261713294495745/photo/1,https://twitter.com/dog_rates/status/872261713294495745/photo/1 13 10 Harry None None None None
105 872122724285648897 NaN NaN 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kody. He's a baller. Wishes he was a little bit taller. Double dribbles often. Still 12/10 would happily get dunked on https://t.co/PKSpmiefwN NaN NaN NaN https://twitter.com/dog_rates/status/872122724285648897/photo/1,https://twitter.com/dog_rates/status/872122724285648897/photo/1 12 10 Kody None None None None
106 871879754684805121 NaN NaN 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w NaN NaN NaN https://twitter.com/dog_rates/status/871879754684805121/photo/1,https://twitter.com/dog_rates/status/871879754684805121/photo/1 13 10 Lassie None None None None
107 871762521631449091 NaN NaN 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg NaN NaN NaN https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1 12 10 Rover None None pupper None
108 871515927908634625 NaN NaN 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw NaN NaN NaN https://twitter.com/dog_rates/status/871515927908634625/photo/1,https://twitter.com/dog_rates/status/871515927908634625/photo/1 12 10 Napolean doggo None None None
109 871166179821445120 NaN NaN 2017-06-04 00:46:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/X… 8.410770e+17 4.196984e+09 2017-03-13 00:02:39 +0000 https://twitter.com/dog_rates/status/841077006473256960/photo/1 12 10 Dawn None None None None
110 871102520638267392 NaN NaN 2017-06-03 20:33:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH NaN NaN NaN https://twitter.com/animalcog/status/871075758080503809 14 10 None doggo None None None
111 871032628920680449 NaN NaN 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo NaN NaN NaN https://twitter.com/dog_rates/status/871032628920680449/photo/1 13 10 Boomer None None None None
112 870804317367881728 NaN NaN 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 https://t.co/GCD1JccCyi NaN NaN NaN https://twitter.com/dog_rates/status/870804317367881728/photo/1 11 10 None None None None None
113 870726314365509632 8.707262e+17 1.648776e+07 2017-06-02 19:38:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @ComplicitOwl @ShopWeRateDogs &gt;10/10 is reserved for dogs NaN NaN NaN NaN 10 10 None None None None None
114 870656317836468226 NaN NaN 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cody. He zoomed too aggressively and tore his ACL. Happens to the best of us. Still 13/10\n\nHelp Cody here: https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4 NaN NaN NaN https://www.gofundme.com/help-fix-codys-torn-acl,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1 13 10 Cody None None None None
115 870374049280663552 NaN NaN 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm NaN NaN NaN https://twitter.com/dog_rates/status/870374049280663552/photo/1 13 10 Zoey None None None None
116 870308999962521604 NaN NaN 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9 NaN NaN NaN https://twitter.com/dog_rates/status/870308999962521604/photo/1,https://twitter.com/dog_rates/status/870308999962521604/photo/1 13 10 Rumble None None None None
117 870063196459192321 NaN NaN 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Clifford. He's quite large. Also red. Good w kids. Somehow never steps on them. Massive poops very inconvenient. Still 14/10 would ride https://t.co/apVOyDgOju NaN NaN NaN https://twitter.com/dog_rates/status/870063196459192321/photo/1,https://twitter.com/dog_rates/status/870063196459192321/photo/1 14 10 Clifford None None None None
118 869988702071779329 NaN NaN 2017-05-31 18:47:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10… 8.591970e+17 4.196984e+09 2017-05-02 00:04:57 +0000 https://twitter.com/dog_rates/status/859196978902773760/video/1 12 10 quite None None None None
119 869772420881756160 NaN NaN 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dewey (pronounced "covfefe"). He's having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D NaN NaN NaN https://twitter.com/dog_rates/status/869772420881756160/photo/1 13 10 Dewey None None None None
120 869702957897576449 NaN NaN 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq NaN NaN NaN https://twitter.com/dog_rates/status/869702957897576449/photo/1 13 10 Stanley None None None None
121 869596645499047938 NaN NaN 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo NaN NaN NaN https://twitter.com/dog_rates/status/869596645499047938/photo/1,https://twitter.com/dog_rates/status/869596645499047938/photo/1 12 10 Scout doggo None None None
122 869227993411051520 NaN NaN 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ NaN NaN NaN https://twitter.com/dog_rates/status/869227993411051520/photo/1 13 10 Gizmo None None None None
123 868880397819494401 NaN NaN 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF NaN NaN NaN https://twitter.com/dog_rates/status/868880397819494401/photo/1 14 10 Walter None None None None
124 868639477480148993 NaN NaN 2017-05-28 01:26:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://… 8.685523e+17 4.196984e+09 2017-05-27 19:39:34 +0000 https://www.gofundme.com/3ti3nps,https://twitter.com/dog_rates/status/868552278524837888/photo/1,https://twitter.com/dog_rates/status/868552278524837888/photo/1 12 10 Cooper None None None None
125 868622495443632128 NaN NaN 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM NaN NaN NaN https://twitter.com/dog_rates/status/868622495443632128/photo/1 13 10 None None None None None
126 868552278524837888 NaN NaN 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi NaN NaN NaN https://www.gofundme.com/3ti3nps,https://twitter.com/dog_rates/status/868552278524837888/photo/1,https://twitter.com/dog_rates/status/868552278524837888/photo/1 12 10 Cooper None None None None
127 867900495410671616 NaN NaN 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ NaN NaN NaN https://twitter.com/dog_rates/status/867900495410671616/photo/1 12 10 None None None None None
128 867774946302451713 NaN NaN 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Harold. He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa NaN NaN NaN https://twitter.com/dog_rates/status/867774946302451713/photo/1,https://twitter.com/dog_rates/status/867774946302451713/photo/1 13 10 Harold None None None None
129 867421006826221569 NaN NaN 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go NaN NaN NaN https://twitter.com/dog_rates/status/867421006826221569/photo/1 12 10 Shikha None None None puppo
130 867072653475098625 NaN NaN 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @rachaeleasler: these @dog_rates hats are 13/10 bean approved https://t.co/nRCdq4g9gG 8.650134e+17 7.874618e+17 2017-05-18 01:17:25 +0000 https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1 13 10 None None None None None
131 867051520902168576 NaN NaN 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ NaN NaN NaN https://twitter.com/dog_rates/status/867051520902168576/photo/1 13 10 None None None None None
132 866816280283807744 NaN NaN 2017-05-23 00:41:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7T… 8.664507e+17 4.196984e+09 2017-05-22 00:28:40 +0000 https://twitter.com/dog_rates/status/866450705531457537/photo/1,https://twitter.com/dog_rates/status/866450705531457537/photo/1 13 10 Jamesy None None pupper None
133 866720684873056260 NaN NaN 2017-05-22 18:21:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> He was providing for his family 13/10 how dare you https://t.co/Q8mVwWN3f4 NaN NaN NaN https://twitter.com/nbcnews/status/866458718883467265 13 10 None None None None None
134 866686824827068416 NaN NaN 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z NaN NaN NaN https://twitter.com/dog_rates/status/866686824827068416/photo/1,https://twitter.com/dog_rates/status/866686824827068416/photo/1 12 10 Lili None None None None
135 866450705531457537 NaN NaN 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr NaN NaN NaN https://twitter.com/dog_rates/status/866450705531457537/photo/1,https://twitter.com/dog_rates/status/866450705531457537/photo/1 13 10 Jamesy None None pupper None
136 866334964761202691 NaN NaN 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c NaN NaN NaN https://twitter.com/dog_rates/status/866334964761202691/photo/1,https://twitter.com/dog_rates/status/866334964761202691/photo/1 12 10 Coco None None None None
137 866094527597207552 NaN NaN 2017-05-21 00:53:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK… 8.378202e+17 4.196984e+09 2017-03-04 00:21:08 +0000 https://twitter.com/dog_rates/status/837820167694528512/photo/1,https://twitter.com/dog_rates/status/837820167694528512/photo/1 12 10 None None None pupper None
138 865718153858494464 NaN NaN 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg NaN NaN NaN https://twitter.com/dog_rates/status/865718153858494464/photo/1 13 10 Boomer None None None None
139 865359393868664832 NaN NaN 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc NaN NaN NaN https://twitter.com/dog_rates/status/865359393868664832/photo/1,https://twitter.com/dog_rates/status/865359393868664832/photo/1 13 10 Sammy None None None None
140 865006731092295680 NaN NaN 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o NaN NaN NaN https://twitter.com/dog_rates/status/865006731092295680/photo/1 13 10 Nelly None None None None
141 864873206498414592 NaN NaN 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 https://t.co/wr3xsjeCIR NaN NaN NaN https://twitter.com/dog_rates/status/864873206498414592/photo/1,https://twitter.com/dog_rates/status/864873206498414592/photo/1 14 10 None None None None None
142 864279568663928832 NaN NaN 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck NaN NaN NaN https://twitter.com/dog_rates/status/864279568663928832/photo/1,https://twitter.com/dog_rates/status/864279568663928832/photo/1 12 10 Meatball None None None None
143 864197398364647424 NaN NaN 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Paisley. She ate a flower just to prove she could. Savage af. 13/10 would pet so well https://t.co/cPq9fYvkzr NaN NaN NaN https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1 13 10 Paisley None None None None
144 863907417377173506 NaN NaN 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Albus. He's quite impressive at hide and seek. Knows he's been found this time. 13/10 usually elusive as h*ck https://t.co/ht47njyZ64 NaN NaN NaN https://twitter.com/dog_rates/status/863907417377173506/photo/1,https://twitter.com/dog_rates/status/863907417377173506/photo/1 13 10 Albus None None None None
145 863553081350529029 NaN NaN 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop NaN NaN NaN https://twitter.com/dog_rates/status/863553081350529029/video/1 13 10 Neptune None None None None
146 863471782782697472 NaN NaN 2017-05-13 19:11:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://… 8.630625e+17 4.196984e+09 2017-05-12 16:05:02 +0000 https://www.gofundme.com/helpquinny,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1 13 10 Quinn None None None None
147 863432100342583297 NaN NaN 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H NaN NaN NaN https://twitter.com/dog_rates/status/863432100342583297/photo/1 12 10 Belle None None None None
148 863427515083354112 8.634256e+17 7.759620e+07 2017-05-13 16:15:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10 NaN NaN NaN NaN 12 10 None None None None None
149 863079547188785154 6.671522e+17 4.196984e+09 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen NaN NaN NaN https://twitter.com/dog_rates/status/863079547188785154/photo/1 14 10 None None None None None
150 863062471531167744 NaN NaN 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt NaN NaN NaN https://www.gofundme.com/helpquinny,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1 13 10 Quinn None None None None
151 862831371563274240 NaN NaN 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE NaN NaN NaN https://twitter.com/dog_rates/status/862831371563274240/photo/1,https://twitter.com/dog_rates/status/862831371563274240/photo/1 13 10 Zooey None None None None
152 862722525377298433 NaN NaN 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2 NaN NaN NaN https://twitter.com/dog_rates/status/862722525377298433/photo/1 11 10 Dave None None None None
153 862457590147678208 NaN NaN 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jersey. He likes to watch movies, but only if you watch with him. Enjoys horror films like The Bababork and H*ckraiser. 13/10 https://t.co/jvSNASweNb NaN NaN NaN https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1 13 10 Jersey None None None None
154 862096992088072192 NaN NaN 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd NaN NaN NaN https://twitter.com/dog_rates/status/862096992088072192/photo/1,https://twitter.com/dog_rates/status/862096992088072192/photo/1 13 10 None None None None None
155 861769973181624320 NaN NaN 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 8.066291e+17 4.196984e+09 2016-12-07 22:38:52 +0000 https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1 13 10 None None None None None
156 861383897657036800 NaN NaN 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1 NaN NaN NaN https://twitter.com/dog_rates/status/861383897657036800/photo/1 13 10 Hobbes None None None None
157 861288531465048066 NaN NaN 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 https://t.co/SqKJPwbQ2g NaN NaN NaN https://twitter.com/dog_rates/status/861288531465048066/video/1 13 10 None None None None None
158 861005113778896900 NaN NaN 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6 NaN NaN NaN https://twitter.com/dog_rates/status/861005113778896900/photo/1 12 10 Burt None None None None
159 860981674716409858 NaN NaN 2017-05-06 22:16:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t… 8.605638e+17 4.196984e+09 2017-05-05 18:36:06 +0000 https://www.gofundme.com/help-lorenzo-beat-cancer,https://twitter.com/dog_rates/status/860563773140209665/photo/1,https://twitter.com/dog_rates/status/860563773140209665/photo/1 13 10 Lorenzo None None None None
160 860924035999428608 NaN NaN 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @tallylott: h*ckin adorable promposal. 13/10 @dog_rates https://t.co/6n8hzNihJ9 8.609145e+17 3.638908e+08 2017-05-06 17:49:42 +0000 https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1 13 10 None None None None None
161 860563773140209665 NaN NaN 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt NaN NaN NaN https://www.gofundme.com/help-lorenzo-beat-cancer,https://twitter.com/dog_rates/status/860563773140209665/photo/1,https://twitter.com/dog_rates/status/860563773140209665/photo/1 13 10 Lorenzo None None None None
162 860524505164394496 NaN NaN 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I NaN NaN NaN https://twitter.com/dog_rates/status/860524505164394496/photo/1 13 10 Carl None None None None
163 860276583193509888 NaN NaN 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jordy. He likes to go on adventures and watch the small scaly underwater dogs with fins pass him by. 12/10 peaceful as h*ck https://t.co/xJo6S2sfsN NaN NaN NaN https://twitter.com/dog_rates/status/860276583193509888/photo/1 12 10 Jordy None None None None
164 860184849394610176 NaN NaN 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try https://t.co/upRYxG4KbG NaN NaN NaN https://twitter.com/dog_rates/status/860184849394610176/photo/1 14 10 None None None None None
165 860177593139703809 NaN NaN 2017-05-04 17:01:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.c… 7.616730e+17 4.196984e+09 2016-08-05 21:19:27 +0000 https://twitter.com/dog_rates/status/761672994376806400/video/1 10 10 None None None None None
166 859924526012018688 NaN NaN 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29 NaN NaN NaN https://twitter.com/dog_rates/status/859924526012018688/photo/1 12 10 Milky None None None None
167 859851578198683649 NaN NaN 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Trooper. He picks pup recyclables that have blown out of bins in the neighborhood and puts them back. 13/10 environmentally savvy af https://t.co/BqSttrTuIl NaN NaN NaN https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1 13 10 Trooper None None None None
168 859607811541651456 NaN NaN 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0 NaN NaN NaN https://twitter.com/dog_rates/status/859607811541651456/photo/1 13 10 None None None None puppo
169 859196978902773760 NaN NaN 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 NaN NaN NaN https://twitter.com/dog_rates/status/859196978902773760/video/1 12 10 quite None None None None
170 859074603037188101 NaN NaN 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet https://t.co/gEsymGTXCT NaN NaN NaN https://twitter.com/dog_rates/status/859074603037188101/photo/1 13 10 None None None None None
171 858860390427611136 NaN NaN 2017-05-01 01:47:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily… 8.395493e+17 4.196984e+09 2017-03-08 18:52:12 +0000 https://twitter.com/dog_rates/status/839549326359670784/photo/1 12 10 Winston None None None None
172 858843525470990336 NaN NaN 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq NaN NaN NaN https://twitter.com/dog_rates/status/858843525470990336/photo/1 13 10 None doggo None None None
173 858471635011153920 NaN NaN 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy NaN NaN NaN https://twitter.com/dog_rates/status/858471635011153920/photo/1 13 10 Sophie None None None None
174 858107933456039936 NaN NaN 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF NaN NaN NaN https://twitter.com/dog_rates/status/858107933456039936/photo/1 12 10 Wyatt None None None None
175 857989990357356544 NaN NaN 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X NaN NaN NaN https://twitter.com/dog_rates/status/857989990357356544/photo/1 12 10 Rosie None None None None
176 857746408056729600 NaN NaN 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai NaN NaN NaN https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1 13 10 Thor None None None None
177 857393404942143489 NaN NaN 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV NaN NaN NaN https://www.gofundme.com/meeko-needs-heart-surgery,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1 13 10 None None None None None
178 857263160327368704 NaN NaN 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC NaN NaN NaN https://twitter.com/dog_rates/status/857263160327368704/photo/1 13 10 Oscar None None None None
179 857214891891077121 8.571567e+17 1.806710e+08 2017-04-26 12:48:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @Marc_IRL pixelated af 12/10 NaN NaN NaN NaN 12 10 None None None None None
180 857062103051644929 NaN NaN 2017-04-26 02:41:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @AaronChewning: First time wearing my @dog_rates hat on a flight and I get DOUBLE OPEN ROWS. Really makes you think. 13/10 https://t.co/… 8.570611e+17 5.870972e+07 2017-04-26 02:37:47 +0000 https://twitter.com/AaronChewning/status/857061112319234050/photo/1 13 10 None None None None None
181 857029823797047296 NaN NaN 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu NaN NaN NaN https://twitter.com/dog_rates/status/857029823797047296/photo/1,https://twitter.com/dog_rates/status/857029823797047296/photo/1 12 10 Zeke None None None None
182 856602993587888130 NaN NaN 2017-04-24 20:17:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I… 8.447048e+17 4.196984e+09 2017-03-23 00:18:10 +0000 https://twitter.com/dog_rates/status/844704788403113984/photo/1 13 10 Luna None None None None
183 856543823941562368 NaN NaN 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO NaN NaN NaN https://twitter.com/dog_rates/status/856543823941562368/photo/1 12 10 Callie None None None None
184 856526610513747968 8.558181e+17 4.196984e+09 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA NaN NaN NaN https://twitter.com/dog_rates/status/856526610513747968/photo/1 14 10 None None None None None
185 856330835276025856 NaN NaN 2017-04-24 02:15:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @Jenna_Marbles: @dog_rates Thanks for rating my cermets 14/10 wow I'm so proud I watered them so much 8.563302e+17 6.669901e+07 2017-04-24 02:13:14 +0000 NaN 14 10 None None None None None
186 856288084350160898 8.562860e+17 2.792810e+08 2017-04-23 23:26:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10 NaN NaN NaN NaN 14 10 None None None None None
187 856282028240666624 NaN NaN 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cermet, Paesh, and Morple. They are absolute h*ckin superstars. Watered every day so they can grow. 14/10 for all https://t.co/GUefqUmZv8 NaN NaN NaN https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1 14 10 Cermet None None None None
188 855862651834028034 8.558616e+17 1.943518e+08 2017-04-22 19:15:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research NaN NaN NaN NaN 420 10 None None None None None
189 855860136149123072 8.558585e+17 1.361572e+07 2017-04-22 19:05:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 NaN NaN NaN NaN 666 10 None None None None None
190 855857698524602368 NaN NaN 2017-04-22 18:55:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS AMAZING HI HUMAN I LOVE YOU AS WELL" 13/10 https://t.co/sb73bV5Y7S NaN NaN NaN https://twitter.com/perfy/status/855857318168150016 13 10 None None None None None
191 855851453814013952 NaN NaN 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel NaN NaN NaN https://twitter.com/dog_rates/status/855851453814013952/photo/1 13 10 None doggo None None puppo
192 855818117272018944 NaN NaN 2017-04-22 16:18:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUST WANTS TO SAY HI AND MAYBE A NOGGIN PAT SHOW SOME RESPECT 13/10 https://t.co/5BEjzT2Tth NaN NaN NaN https://twitter.com/markhalperin/status/855656431005061120 13 10 None None None None None
193 855459453768019968 NaN NaN 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x NaN NaN NaN https://twitter.com/dog_rates/status/855459453768019968/photo/1,https://twitter.com/dog_rates/status/855459453768019968/photo/1 12 10 quite None None None None
194 855245323840757760 NaN NaN 2017-04-21 02:22:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug… 8.421635e+17 4.196984e+09 2017-03-16 00:00:07 +0000 https://twitter.com/dog_rates/status/842163532590374912/photo/1,https://twitter.com/dog_rates/status/842163532590374912/photo/1 12 10 George None None None None
195 855138241867124737 NaN NaN 2017-04-20 19:16:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @frasercampbell_: oh my... what's that... beautiful scarf around your neck... 14/10 a h*ckin good dog in a h*ckin good game @GoodDogsGam… 8.551225e+17 7.475543e+17 2017-04-20 18:14:33 +0000 https://twitter.com/frasercampbell_/status/855122533267460096/photo/1 14 10 None None None None None
196 854732716440526848 NaN NaN 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s NaN NaN NaN https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1 12 10 Marlee None None None None
197 854482394044301312 NaN NaN 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5 NaN NaN NaN https://twitter.com/dog_rates/status/854482394044301312/photo/1 13 10 Arya None None None None
198 854365224396361728 NaN NaN 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6 NaN NaN NaN https://twitter.com/dog_rates/status/854365224396361728/photo/1,https://twitter.com/dog_rates/status/854365224396361728/photo/1 13 10 Einstein None None None None
199 854120357044912130 NaN NaN 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend https://t.co/oBL7LEJEzR NaN NaN NaN https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1 14 10 None None None pupper None
200 854010172552949760 NaN NaN 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk NaN NaN NaN https://twitter.com/dog_rates/status/854010172552949760/photo/1,https://twitter.com/dog_rates/status/854010172552949760/photo/1 11 10 None doggo floofer None None
201 853760880890318849 NaN NaN 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x NaN NaN NaN https://twitter.com/dog_rates/status/853760880890318849/photo/1 12 10 Alice None None None None
202 853639147608842240 NaN NaN 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe NaN NaN NaN https://twitter.com/dog_rates/status/853639147608842240/photo/1,https://twitter.com/dog_rates/status/853639147608842240/photo/1 13 10 None None None None None
203 853299958564483072 NaN NaN 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rumpole. He'll be your Uber driver this evening. Won't start driving until you buckle pup. 13/10 h*ckin safe good boy https://t.co/EX9Z3EXlVP NaN NaN NaN https://twitter.com/dog_rates/status/853299958564483072/photo/1,https://twitter.com/dog_rates/status/853299958564483072/photo/1 13 10 Rumpole None None None None
204 852936405516943360 NaN NaN 2017-04-14 17:27:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t… 8.316501e+17 4.196984e+09 2017-02-14 23:43:18 +0000 http://www.gofundme.com/bluethewhitehusky,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1 13 10 None None None None None
205 852912242202992640 NaN NaN 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U NaN NaN NaN https://www.gofundme.com/bennys-medical-bills,https://twitter.com/dog_rates/status/852912242202992640/photo/1,https://twitter.com/dog_rates/status/852912242202992640/photo/1 12 10 Benny None None None None
206 852672615818899456 NaN NaN 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW NaN NaN NaN https://twitter.com/dog_rates/status/852672615818899456/photo/1 12 10 Aspen None None None None
207 852553447878664193 NaN NaN 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC NaN NaN NaN https://twitter.com/dog_rates/status/852553447878664193/photo/1,https://twitter.com/dog_rates/status/852553447878664193/photo/1 13 10 Jarod None None None None
208 852311364735569921 NaN NaN 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wiggles. She would like you to spot her. Probably won't need your help but just in case. 13/10 powerful as h*ck https://t.co/2d370P0OEg NaN NaN NaN https://twitter.com/dog_rates/status/852311364735569921/photo/1 13 10 Wiggles None None None None
209 852226086759018497 NaN NaN 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Meet General. He wasn't content with the quality of his room. Requested to pupgrade, but was ignored. 14/10 look who just lost a customer https://t.co/NP5JW8LnmW NaN NaN NaN https://twitter.com/dog_rates/status/852226086759018497/video/1 14 10 General None None None None
210 852189679701164033 NaN NaN 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sailor. He has collected the best dirt in the area. As any good boy would. Under the impression you know what to do next. 12/10 https://t.co/jrFzScKWEG NaN NaN NaN https://twitter.com/dog_rates/status/852189679701164033/photo/1 12 10 Sailor None None None None
211 851953902622658560 NaN NaN 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao 8.293743e+17 4.196984e+09 2017-02-08 17:00:26 +0000 https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1 13 10 Astrid doggo None None None
212 851861385021730816 NaN NaN 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @eddie_coe98: Thanks @dog_rates completed my laptop. 10/10 would buy again https://t.co/bO0rThDlXI 8.482894e+17 3.410211e+08 2017-04-01 21:42:03 +0000 https://twitter.com/eddie_coe98/status/848289382176100353/photo/1,https://twitter.com/eddie_coe98/status/848289382176100353/photo/1 10 10 None None None None None
213 851591660324737024 NaN NaN 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS NaN NaN NaN https://twitter.com/dog_rates/status/851591660324737024/photo/1 11 10 None None None None None
214 851464819735769094 NaN NaN 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Iggy. He was a rescue dog killed in the Stockholm attack. His memorial started with a collar and four bones. It's grown a bit. 14/10 https://t.co/E4a0R9my1M NaN NaN NaN https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1 14 10 Iggy None None None None
215 851224888060895234 NaN NaN 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Snoop. His number one passion is sticking his head out of car windows, so he purchased some doggles. Stylish af. 13/10 happy travels https://t.co/iHYfZdz444 NaN NaN NaN https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1 13 10 Snoop None None None None
216 850753642995093505 NaN NaN 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN NaN NaN NaN https://twitter.com/dog_rates/status/850753642995093505/photo/1,https://twitter.com/dog_rates/status/850753642995093505/photo/1 11 10 Kyle None None None None
217 850380195714523136 NaN NaN 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO NaN NaN NaN https://twitter.com/dog_rates/status/850380195714523136/video/1 13 10 Leo None None None None
218 850333567704068097 8.503288e+17 2.195506e+07 2017-04-07 13:04:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS NaN NaN NaN NaN 13 10 None None None None None
219 850145622816686080 NaN NaN 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Riley. He's making new friends. Jubilant as h*ck for the fun times ahead. 11/10 for all pups pictured https://t.co/PCX25VV78l NaN NaN NaN https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1 11 10 Riley None None None None
220 850019790995546112 NaN NaN 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde NaN NaN NaN https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1 12 10 Boomer None None pupper None
221 849776966551130114 NaN NaN 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT NaN NaN NaN https://twitter.com/dog_rates/status/849776966551130114/photo/1,https://twitter.com/dog_rates/status/849776966551130114/photo/1 12 10 None None None None None
222 849668094696017920 NaN NaN 2017-04-05 17:00:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https… 8.331247e+17 4.196984e+09 2017-02-19 01:23:00 +0000 https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1 12 10 Gidget None None pupper None
223 849412302885593088 NaN NaN 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Noosh. He noticed you were in the shower and thought you could use some company. 12/10 h*ckin loyal https://t.co/Uq3ChFgWA3 NaN NaN NaN https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1 12 10 Noosh None None None None
224 849336543269576704 NaN NaN 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 https://t.co/jqPk1BZ6xu NaN NaN NaN https://twitter.com/dog_rates/status/849336543269576704/photo/1 11 10 None None None None None
225 849051919805034497 NaN NaN 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kevin. Kevin doesn't give a single h*ck. Will sit in the fountain if he wants to. 13/10 churlish af https://t.co/r6GjO6MbZz NaN NaN NaN https://twitter.com/dog_rates/status/849051919805034497/photo/1 13 10 Kevin None None None None
226 848690551926992896 NaN NaN 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU NaN NaN NaN https://twitter.com/dog_rates/status/848690551926992896/photo/1 12 10 None None None None None
227 848324959059550208 NaN NaN 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z NaN NaN NaN https://twitter.com/dog_rates/status/848324959059550208/photo/1 12 10 Odin None None None None
228 848213670039564288 8.482121e+17 4.196984e+09 2017-04-01 16:41:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet NaN NaN NaN NaN 11 10 None None None None None
229 848212111729840128 NaN NaN 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1 NaN NaN NaN https://twitter.com/dog_rates/status/848212111729840128/photo/1 6 10 Jerry None None None None
230 847978865427394560 NaN NaN 2017-04-01 01:08:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.c… 8.323699e+17 4.196984e+09 2017-02-16 23:23:38 +0000 https://twitter.com/dog_rates/status/832369877331693569/photo/1 11 10 Charlie None None None None
231 847971574464610304 NaN NaN 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @basic_vacek_: I love my new mug easy 13/10 @dog_rates https://t.co/0bYtoL7Wwt 8.479710e+17 5.970642e+08 2017-04-01 00:36:55 +0000 https://twitter.com/basic_vacek_/status/847971000004354048/photo/1,https://twitter.com/basic_vacek_/status/847971000004354048/photo/1 13 10 None None None None None
232 847962785489326080 NaN NaN 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Georgie. He's very shy. Only puppears when called. Aggressively average at fetch. Unique front paws. Looks slippery. 10/10 would pet https://t.co/rcDs5LkiSj NaN NaN NaN https://twitter.com/dog_rates/status/847962785489326080/photo/1 10 10 Georgie None None None None
233 847842811428974592 NaN NaN 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 NaN NaN NaN https://www.gofundme.com/help-save-rontu,https://twitter.com/dog_rates/status/847842811428974592/photo/1 12 10 Rontu None None None None
234 847617282490613760 8.476062e+17 4.196984e+09 2017-03-31 01:11:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> .@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10 NaN NaN NaN NaN 13 10 None None None None None
235 847606175596138505 NaN NaN 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1 NaN NaN NaN https://twitter.com/dog_rates/status/847606175596138505/photo/1 12 10 Cannon None None None None
236 847251039262605312 NaN NaN 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq NaN NaN NaN https://twitter.com/dog_rates/status/847251039262605312/photo/1,https://twitter.com/dog_rates/status/847251039262605312/photo/1 12 10 Furzey None None None None
237 847157206088847362 NaN NaN 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r NaN NaN NaN https://www.petfinder.com/petdetail/37334596,https://twitter.com/dog_rates/status/847157206088847362/photo/1,https://twitter.com/dog_rates/status/847157206088847362/photo/1 11 10 Daisy None None None None
238 847116187444137987 NaN NaN 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 https://t.co/EeeErAbso0 NaN NaN NaN https://twitter.com/dog_rates/status/847116187444137987/photo/1 11 10 None None None None None
239 846874817362120707 NaN NaN 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe NaN NaN NaN https://twitter.com/dog_rates/status/846874817362120707/photo/1,https://twitter.com/dog_rates/status/846874817362120707/photo/1 13 10 Tuck None None None None
240 846514051647705089 NaN NaN 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK NaN NaN NaN https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1 13 10 Barney doggo None None None
241 846505985330044928 NaN NaN 2017-03-27 23:35:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 STILL A VERY GOOD DOG https://t.co/GJ8rozumsy NaN NaN NaN https://twitter.com/shomaristone/status/846484798663245829 11 10 None None None None None
242 846153765933735936 NaN NaN 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR NaN NaN NaN https://twitter.com/dog_rates/status/846153765933735936/photo/1,https://twitter.com/dog_rates/status/846153765933735936/photo/1 13 10 Vixen None None None None
243 846139713627017216 NaN NaN 2017-03-26 23:20:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON THE BRAKES 13/10 CANCEL THE GAME THIS IS ALL WE NEED https://t.co/4ctgpGcqAd NaN NaN NaN https://twitter.com/csncapitals/status/846088479142531073 13 10 None None None None None
244 846042936437604353 NaN NaN 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW NaN NaN NaN https://twitter.com/dog_rates/status/846042936437604353/photo/1 12 10 Jarvis None None None None
245 845812042753855489 NaN NaN 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP NaN NaN NaN https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1 13 10 None None None None None
246 845677943972139009 NaN NaN 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo NaN NaN NaN https://twitter.com/dog_rates/status/845677943972139009/photo/1 12 10 None None None None None
247 845459076796616705 NaN NaN 2017-03-25 02:15:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://… 7.562885e+17 4.196984e+09 2016-07-22 00:43:32 +0000 https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1 12 10 None None None None None
248 845397057150107648 NaN NaN 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o NaN NaN NaN https://www.gofundme.com/help-save-a-pup,https://twitter.com/dog_rates/status/845397057150107648/photo/1,https://twitter.com/dog_rates/status/845397057150107648/photo/1 13 10 Mimosa doggo None None None
249 845306882940190720 NaN NaN 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk NaN NaN NaN https://twitter.com/dog_rates/status/845306882940190720/photo/1 12 10 Pickles None None pupper None
250 845098359547420673 NaN NaN 2017-03-24 02:22:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t… 7.733088e+17 4.196984e+09 2016-09-06 23:56:05 +0000 https://twitter.com/dog_rates/status/773308824254029826/photo/1 12 10 Bungalo None None None None
251 844979544864018432 7.590995e+17 4.196984e+09 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B NaN NaN NaN https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1 13 10 None None None None None
252 844973813909606400 NaN NaN 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr NaN NaN NaN https://twitter.com/dog_rates/status/844973813909606400/photo/1 12 10 Brady None None None None
253 844704788403113984 NaN NaN 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I just wanna talk https://t.co/2RYiLGHuPN NaN NaN NaN https://twitter.com/dog_rates/status/844704788403113984/photo/1 13 10 Luna None None None None
254 844580511645339650 NaN NaN 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charlie. He wants to know if you have a moment to talk about washing machine insurance policies. 11/10 would hear him out https://t.co/gAzPqT7uyk NaN NaN NaN https://twitter.com/dog_rates/status/844580511645339650/photo/1 11 10 Charlie None None None None
255 844223788422217728 NaN NaN 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx NaN NaN NaN https://twitter.com/dog_rates/status/844223788422217728/photo/1 12 10 Margo None None None None
256 843981021012017153 NaN NaN 2017-03-21 00:22:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/10 https://t.co/Gu5wHx3CBd NaN NaN NaN https://twitter.com/brianstack153/status/796796054100471809 13 10 None None None None None
257 843856843873095681 NaN NaN 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e NaN NaN NaN https://twitter.com/dog_rates/status/843856843873095681/photo/1 12 10 Sadie None None None None
258 843604394117681152 NaN NaN 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC NaN NaN NaN https://twitter.com/dog_rates/status/843604394117681152/photo/1 11 10 Hank None None None None
259 843235543001513987 NaN NaN 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL NaN NaN NaN https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1 13 10 Tycho None None None None
260 842892208864923648 NaN NaN 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d 8.071068e+17 4.196984e+09 2016-12-09 06:17:20 +0000 https://twitter.com/dog_rates/status/807106840509214720/video/1,https://twitter.com/dog_rates/status/807106840509214720/video/1 13 10 Stephan None None None None
261 842846295480000512 NaN NaN 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs NaN NaN NaN https://twitter.com/dog_rates/status/842846295480000512/photo/1 13 10 Charlie None None None None
262 842765311967449089 NaN NaN 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Indie. She's not a fan of baths but she's definitely a fan of hide &amp; seek. 12/10 click the link to help Indie\n\nhttps://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l NaN NaN NaN https://www.gofundme.com/get-indie-home/,https://twitter.com/dog_rates/status/842765311967449089/photo/1,https://twitter.com/dog_rates/status/842765311967449089/photo/1 12 10 Indie None None None None
263 842535590457499648 NaN NaN 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe NaN NaN NaN https://twitter.com/dog_rates/status/842535590457499648/photo/1 13 10 Winnie None None None None
264 842163532590374912 NaN NaN 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl NaN NaN NaN https://twitter.com/dog_rates/status/842163532590374912/photo/1,https://twitter.com/dog_rates/status/842163532590374912/photo/1 12 10 George None None None None
265 842115215311396866 NaN NaN 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy NaN NaN NaN https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1 12 10 Bentley None None None None
266 841833993020538882 NaN NaN 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ 8.174239e+17 4.196984e+09 2017-01-06 17:33:29 +0000 https://twitter.com/dog_rates/status/817423860136083457/video/1,https://twitter.com/dog_rates/status/817423860136083457/video/1 13 10 Ken None None None None
267 841680585030541313 NaN NaN 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj NaN NaN NaN https://twitter.com/dog_rates/status/841680585030541313/photo/1 12 10 Penny None None None None
268 841439858740625411 NaN NaN 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all https://t.co/SVNMdFqKDL NaN NaN NaN https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1 14 10 None None None None None
269 841320156043304961 NaN NaN 2017-03-13 16:08:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We don't rate penguins, but if we did, this one would get 12/10 https://t.co/cEORXhwZ5K NaN NaN NaN https://twitter.com/abc/status/841311395547250688 12 10 None None None None None
270 841314665196081154 NaN NaN 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5 NaN NaN NaN https://twitter.com/dog_rates/status/841314665196081154/video/1 13 10 Max None None None None
271 841077006473256960 NaN NaN 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ NaN NaN NaN https://twitter.com/dog_rates/status/841077006473256960/photo/1 12 10 Dawn None None None None
272 840761248237133825 NaN NaN 2017-03-12 03:07:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps:/… 8.406323e+17 4.196984e+09 2017-03-11 18:35:42 +0000 https://www.gofundme.com/3hgsuu0,https://twitter.com/dog_rates/status/840632337062862849/photo/1 12 10 Maddie None None None None
273 840728873075638272 NaN NaN 2017-03-12 00:59:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Pipsy. He is a fluffball. Enjoys traveling the sea &amp; getting tangled in leash. 12/10 I would kill for Pipsy https://… 6.671522e+17 4.196984e+09 2015-11-19 01:27:25 +0000 https://twitter.com/dog_rates/status/667152164079423490/photo/1 12 10 Pipsy None None None None
274 840698636975636481 8.406983e+17 8.405479e+17 2017-03-11 22:59:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @0_kelvin_0 &gt;10/10 is reserved for puppos sorry Kevin NaN NaN NaN NaN 10 10 None None None None None
275 840696689258311684 NaN NaN 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin https://t.co/2gclc1MNr7 NaN NaN NaN https://twitter.com/dog_rates/status/840696689258311684/photo/1 10 10 None None None None None
276 840632337062862849 NaN NaN 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o NaN NaN NaN https://www.gofundme.com/3hgsuu0,https://twitter.com/dog_rates/status/840632337062862849/photo/1 12 10 Maddie None None None None
277 840370681858686976 NaN NaN 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately https://t.co/76iL7JUQdG NaN NaN NaN https://twitter.com/dog_rates/status/840370681858686976/photo/1 13 10 None None None None None
278 840268004936019968 NaN NaN 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE NaN NaN NaN https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1 12 10 Monty None None None None
279 839990271299457024 NaN NaN 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr NaN NaN NaN https://twitter.com/dog_rates/status/839990271299457024/photo/1,https://twitter.com/dog_rates/status/839990271299457024/photo/1 13 10 Sojourner None None None None
280 839549326359670784 NaN NaN 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu NaN NaN NaN https://twitter.com/dog_rates/status/839549326359670784/photo/1 12 10 Winston None None None None
281 839290600511926273 NaN NaN 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @alexmartindawg: THE DRINK IS DR. PUPPER 10/10 good pun @matt___nelson @GoodDogsGame https://t.co/act3duiqbL 8.392899e+17 4.119842e+07 2017-03-08 01:41:24 +0000 https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1 10 10 None None None pupper None
282 839239871831150596 NaN NaN 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm NaN NaN NaN https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1 13 10 Odie None None None None
283 838952994649550848 NaN NaN 2017-03-07 03:22:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN https://t.co/ngAxYLVYHP NaN NaN NaN https://twitter.com/ktla/status/838948714227998720 13 10 None None None None None
284 838921590096166913 NaN NaN 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv NaN NaN NaN https://twitter.com/dog_rates/status/838921590096166913/photo/1 13 10 Arlo None None None None
285 838916489579200512 NaN NaN 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @KibaDva: I collected all the good dogs!! 15/10 @dog_rates #GoodDogs https://t.co/6UCGFczlOI 8.389060e+17 8.117408e+08 2017-03-07 00:15:46 +0000 https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1 15 10 None None None None None
286 838831947270979586 NaN NaN 2017-03-06 19:21:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https:… 7.838400e+17 4.196984e+09 2016-10-06 01:23:05 +0000 https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1 13 10 Riley None None None None
287 838561493054533637 NaN NaN 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI NaN NaN NaN https://twitter.com/dog_rates/status/838561493054533637/photo/1 13 10 Walter None None None None
288 838476387338051585 NaN NaN 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI NaN NaN NaN https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1 13 10 Stanley None None None None
289 838201503651401729 NaN NaN 2017-03-05 01:36:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EM… 8.207497e+17 4.196984e+09 2017-01-15 21:49:15 +0000 https://twitter.com/dog_rates/status/820749716845686786/photo/1,https://twitter.com/dog_rates/status/820749716845686786/photo/1 13 10 Sunny None None None None
290 838150277551247360 8.381455e+17 2.195506e+07 2017-03-04 22:12:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @markhoppus 182/10 NaN NaN NaN NaN 182 10 None None None None None
291 838085839343206401 8.380855e+17 2.894131e+09 2017-03-04 17:56:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @bragg6of8 @Andy_Pace_ we are still looking for the first 15/10 NaN NaN NaN NaN 15 10 None None None None None
292 838083903487373313 NaN NaN 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO NaN NaN NaN https://twitter.com/dog_rates/status/838083903487373313/photo/1,https://twitter.com/dog_rates/status/838083903487373313/photo/1 13 10 Daisy None None None None
293 837820167694528512 NaN NaN 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK6jlgdH NaN NaN NaN https://twitter.com/dog_rates/status/837820167694528512/photo/1,https://twitter.com/dog_rates/status/837820167694528512/photo/1 12 10 None None None pupper None
294 837482249356513284 NaN NaN 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Waffles. He's a ship captain in real life and in @GoodDogsGame. Must've gotten to the max level (wink) 13/10 would sail with https://t.co/Z3LAaV2pKz NaN NaN NaN https://twitter.com/dog_rates/status/837482249356513284/photo/1,https://twitter.com/dog_rates/status/837482249356513284/photo/1 13 10 Waffles None None None None
295 837471256429613056 NaN NaN 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3 NaN NaN NaN https://twitter.com/dog_rates/status/837471256429613056/photo/1,https://twitter.com/dog_rates/status/837471256429613056/photo/1 12 10 Vincent None None None None
296 837366284874571778 NaN NaN 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lucy. She has a portrait of herself on her ear. Excellent for identification pupposes. 13/10 innovative af https://t.co/uNmxbL2lns NaN NaN NaN https://twitter.com/dog_rates/status/837366284874571778/photo/1 13 10 Lucy None None None None
297 837110210464448512 NaN NaN 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B NaN NaN NaN https://twitter.com/dog_rates/status/837110210464448512/photo/1 13 10 Clark None None pupper None
298 837012587749474308 NaN NaN 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @KennyFromDaBlok: 14/10 h*ckin good hats. will wear daily @dog_rates https://t.co/rHLoU5gS30 8.370113e+17 7.266347e+08 2017-03-01 18:47:10 +0000 https://twitter.com/KennyFromDaBlok/status/837011344666812416/photo/1,https://twitter.com/KennyFromDaBlok/status/837011344666812416/photo/1 14 10 None None None None None
299 836989968035819520 NaN NaN 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mookie. He really enjoys shopping but not from such high altitudes. Doin him quite the concern. 12/10 someone lower him https://t.co/beWUzGVKRM NaN NaN NaN https://twitter.com/dog_rates/status/836989968035819520/photo/1 12 10 Mookie None None None None
300 836753516572119041 NaN NaN 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a doggo anymore. 12/10 https://t.co/GZmNEdyoJY NaN NaN NaN https://twitter.com/dog_rates/status/836753516572119041/photo/1 12 10 Meera doggo None None None
301 836677758902222849 NaN NaN 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Oliver. He's pretty exotic. Fairly pupset as well. Too many midterms coming pup. 11/10 would pet with extreme caution https://t.co/fGAPAsxjKs NaN NaN NaN https://twitter.com/dog_rates/status/836677758902222849/photo/1,https://twitter.com/dog_rates/status/836677758902222849/photo/1 11 10 Oliver None None None None
302 836648853927522308 NaN NaN 2017-02-28 18:46:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @SchafeBacon2016: @dog_rates Slightly disturbed by the outright profanity, but confident doggos were involved. 11/10, would tailgate aga… 8.366481e+17 7.124572e+17 2017-02-28 18:43:57 +0000 https://twitter.com/SchafeBacon2016/status/836648149003485187/photo/1 11 10 None None None None None
303 836397794269200385 NaN NaN 2017-02-28 02:09:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https:/… 8.178278e+17 4.196984e+09 2017-01-07 20:18:46 +0000 https://twitter.com/dog_rates/status/817827839487737858/video/1 13 10 Buddy None None None None
304 836380477523124226 NaN NaN 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ava. She just blasted off. Streamline af. Aerodynamic as h*ck. One small step for pupper, one giant leap for pupkind. 12/10 https://t.co/W4KffrdX3Q NaN NaN NaN https://twitter.com/dog_rates/status/836380477523124226/photo/1 12 10 Ava None None pupper None
305 836260088725786625 NaN NaN 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD NaN NaN NaN https://twitter.com/dog_rates/status/836260088725786625/photo/1 13 10 Lucy None None None None
306 836001077879255040 NaN NaN 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract https://t.co/uRdKlFArQE NaN NaN NaN https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1 13 10 None None None None None
307 835685285446955009 NaN NaN 2017-02-26 02:57:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/… 7.869631e+17 4.196984e+09 2016-10-14 16:13:10 +0000 https://twitter.com/dog_rates/status/786963064373534720/photo/1 12 10 Rory None None None None
308 835574547218894849 NaN NaN 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q NaN NaN NaN https://twitter.com/dog_rates/status/835574547218894849/photo/1,https://twitter.com/dog_rates/status/835574547218894849/photo/1 11 10 Eli None None None None
309 835536468978302976 NaN NaN 2017-02-25 17:06:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://… 8.352641e+17 4.196984e+09 2017-02-24 23:04:14 +0000 https://www.gofundme.com/lolas-life-saving-surgery-funds,https://twitter.com/dog_rates/status/835264098648616962/photo/1,https://twitter.com/dog_rates/status/835264098648616962/photo/1 12 10 Lola None None None None
310 835309094223372289 NaN NaN 2017-02-25 02:03:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 7.530398e+17 4.196984e+09 2016-07-13 01:34:21 +0000 https://vine.co/v/5W2Dg3XPX7a,https://vine.co/v/5W2Dg3XPX7a 13 10 None None None None None
311 835297930240217089 NaN NaN 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO NaN NaN NaN https://twitter.com/dog_rates/status/835297930240217089/photo/1 12 10 Ash None None None None
312 835264098648616962 NaN NaN 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU NaN NaN NaN https://www.gofundme.com/lolas-life-saving-surgery-funds,https://twitter.com/dog_rates/status/835264098648616962/photo/1,https://twitter.com/dog_rates/status/835264098648616962/photo/1 12 10 Lola None None None None
313 835246439529840640 8.352460e+17 2.625958e+07 2017-02-24 21:54:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho NaN NaN NaN NaN 960 0 None None None None None
314 835172783151792128 NaN NaN 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL NaN NaN NaN https://twitter.com/dog_rates/status/835172783151792128/photo/1,https://twitter.com/dog_rates/status/835172783151792128/photo/1 12 10 None None None None None
315 835152434251116546 NaN NaN 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag NaN NaN NaN https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1 0 10 None None None None None
316 834931633769889797 NaN NaN 2017-02-24 01:03:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tucker. He decided it was time to part ways with his favorite ball. We captured the emotional farewell on camera. 12/10 https://t.co/jTe7Y6P0HK NaN NaN NaN https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1 12 10 Tucker None None None None
317 834786237630337024 NaN NaN 2017-02-23 15:25:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE NaN NaN NaN https://twitter.com/dog_rates/status/834786237630337024/photo/1 13 10 Tobi None None None None
318 834574053763584002 NaN NaN 2017-02-23 01:22:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 https://t.co/UtEVnQ1ZPg NaN NaN NaN https://twitter.com/dog_rates/status/834574053763584002/photo/1 13 10 None doggo None None None
319 834477809192075265 NaN NaN 2017-02-22 18:59:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me… 8.295020e+17 4.196984e+09 2017-02-09 01:27:41 +0000 https://twitter.com/dog_rates/status/829501995190984704/photo/1,https://twitter.com/dog_rates/status/829501995190984704/photo/1 12 10 Leo None None None None
320 834458053273591808 NaN NaN 2017-02-22 17:41:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Chester (bottom) &amp; Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe NaN NaN NaN https://twitter.com/dog_rates/status/834458053273591808/photo/1 12 10 Chester None None None None
321 834209720923721728 NaN NaN 2017-02-22 01:14:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ NaN NaN NaN https://twitter.com/dog_rates/status/834209720923721728/photo/1,https://twitter.com/dog_rates/status/834209720923721728/photo/1 12 10 Wilson None None None None
322 834167344700198914 NaN NaN 2017-02-21 22:26:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sunshine. She doesn't believe in personal space. Eyes pretty far apart for a dog. Has horns (whoa). 11/10 would pet with wonder https://t.co/o3bhLguymB NaN NaN NaN https://twitter.com/dog_rates/status/834167344700198914/photo/1 11 10 Sunshine None None None None
323 834089966724603904 NaN NaN 2017-02-21 17:18:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE 10/10 https://t.co/ffIH2WxwF0 NaN NaN NaN https://twitter.com/stevekopack/status/834086676934836224 10 10 None doggo None None None
324 834086379323871233 NaN NaN 2017-02-21 17:04:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lipton. He's a West Romanian Snuggle Pup. Only a few left of his kind. 12/10 would boop https://t.co/5KmXPIGgAG NaN NaN NaN https://twitter.com/dog_rates/status/834086379323871233/photo/1 12 10 Lipton None None None None
325 833863086058651648 NaN NaN 2017-02-21 02:17:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ NaN NaN NaN https://twitter.com/dog_rates/status/833863086058651648/photo/1,https://twitter.com/dog_rates/status/833863086058651648/photo/1 12 10 Bentley None None None None
326 833826103416520705 NaN NaN 2017-02-20 23:50:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY NaN NaN NaN https://twitter.com/dog_rates/status/833826103416520705/photo/1,https://twitter.com/dog_rates/status/833826103416520705/photo/1 13 10 Charlie None None None None
327 833732339549220864 NaN NaN 2017-02-20 17:37:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @rolltidered: This is Gabby. Now requests to be referred to as a guide dog, thanks to @dog_rates and @ShopWeRateDogs. 12/10 in my book.… 8.324344e+17 4.466750e+07 2017-02-17 03:39:51 +0000 https://twitter.com/rolltidered/status/832434358292209665/photo/1 12 10 Gabby None None None None
328 833722901757046785 NaN NaN 2017-02-20 17:00:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET NaN NaN NaN https://twitter.com/dog_rates/status/833722901757046785/photo/1,https://twitter.com/dog_rates/status/833722901757046785/photo/1 13 10 Bronte None None None None
329 833479644947025920 NaN NaN 2017-02-20 00:53:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu NaN NaN NaN https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1 13 10 Poppy None None None None
330 833124694597443584 NaN NaN 2017-02-19 01:23:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa NaN NaN NaN https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1 12 10 Gidget None None pupper None
331 832998151111966721 NaN NaN 2017-02-18 17:00:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0 NaN NaN NaN https://twitter.com/dog_rates/status/832998151111966721/photo/1,https://twitter.com/dog_rates/status/832998151111966721/photo/1 13 10 Rhino doggo None None None
332 832769181346996225 NaN NaN 2017-02-18 01:50:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @EmilieGambril: 12/10 h*cking excited about my new shirt! @dog_rates https://t.co/zFEfMTaHqU 8.327664e+17 4.871977e+08 2017-02-18 01:39:12 +0000 https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1 12 10 None None None None None
333 832757312314028032 NaN NaN 2017-02-18 01:03:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ NaN NaN NaN https://twitter.com/dog_rates/status/832757312314028032/photo/1,https://twitter.com/dog_rates/status/832757312314028032/photo/1 13 10 Willow None None None None
334 832682457690300417 NaN NaN 2017-02-17 20:05:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Prosperous good boy 13/10 socioeconomic af https://t.co/8YlD5lxPbQ NaN NaN NaN https://twitter.com/telegraph/status/832268302944579584 13 10 None None None None None
335 832645525019123713 NaN NaN 2017-02-17 17:38:57 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10 \nhttps://t.co/dp5h9bCwU7 NaN NaN NaN http://us.blastingnews.com/news/2017/02/jfk-announces-its-first-ever-ark-oasis-animal-terminal-001480161.html?sbdht=_pM1QUzk3wsdTxcmMoRPV7FWYYlsNKcFRcYSY7OmeHnOXA4NtUM6PLQ2_ 10 10 not None None None None
336 832636094638288896 NaN NaN 2017-02-17 17:01:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr NaN NaN NaN https://twitter.com/dog_rates/status/832636094638288896/photo/1 12 10 Orion None None None None
337 832397543355072512 NaN NaN 2017-02-17 01:13:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt NaN NaN NaN https://twitter.com/dog_rates/status/832397543355072512/photo/1,https://twitter.com/dog_rates/status/832397543355072512/photo/1 12 10 Eevee None None None None
338 832369877331693569 NaN NaN 2017-02-16 23:23:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d NaN NaN NaN https://twitter.com/dog_rates/status/832369877331693569/photo/1 11 10 Charlie None None None None
339 832273440279240704 NaN NaN 2017-02-16 17:00:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz NaN NaN NaN https://twitter.com/dog_rates/status/832273440279240704/video/1 14 10 Smiley doggo None None None
340 832215909146226688 NaN NaN 2017-02-16 13:11:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wu… 7.867091e+17 4.196984e+09 2016-10-13 23:23:56 +0000 https://twitter.com/dog_rates/status/786709082849828864/photo/1 75 10 Logan None None None None
341 832215726631055365 NaN NaN 2017-02-16 13:11:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 7.932865e+17 4.196984e+09 2016-11-01 03:00:09 +0000 https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1 13 10 Moreton None None None None
342 832088576586297345 8.320875e+17 3.058208e+07 2017-02-16 04:45:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @docmisterio account started on 11/15/15 NaN NaN NaN NaN 11 15 None None None None None
343 832040443403784192 NaN NaN 2017-02-16 01:34:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV 7.699404e+17 4.196984e+09 2016-08-28 16:51:16 +0000 https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1 12 10 Klein None None None None
344 832032802820481025 NaN NaN 2017-02-16 01:04:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M NaN NaN NaN https://www.petfinder.com/petdetail/34918210,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1 12 10 Miguel doggo None None None
345 831939777352105988 NaN NaN 2017-02-15 18:54:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT NaN NaN NaN https://twitter.com/dog_rates/status/831939777352105988/photo/1 12 10 Emanuel doggo None None None
346 831926988323639298 8.319030e+17 2.068372e+07 2017-02-15 18:03:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @UNC can confirm 12/10 NaN NaN NaN NaN 12 10 None None None None None
347 831911600680497154 NaN NaN 2017-02-15 17:02:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Kuyu. He was trapped in a well for 10 days. Rescued yesterday using a device designed by a local robotics team. 14/10 for all involved https://t.co/l38R6IZNNg NaN NaN NaN https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1 14 10 Kuyu None None None None
348 831670449226514432 NaN NaN 2017-02-15 01:04:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg NaN NaN NaN https://twitter.com/dog_rates/status/831670449226514432/photo/1 13 10 Daisy None None None None
349 831650051525054464 NaN NaN 2017-02-14 23:43:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO NaN NaN NaN http://www.gofundme.com/bluethewhitehusky,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1 13 10 None None None None None
350 831552930092285952 NaN NaN 2017-02-14 17:17:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse NaN NaN NaN https://twitter.com/dog_rates/status/831552930092285952/photo/1 13 10 Dutch None None None None
351 831322785565769729 NaN NaN 2017-02-14 02:02:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK NaN NaN NaN https://twitter.com/dog_rates/status/831322785565769729/photo/1 12 10 Pete doggo None None None
352 831315979191906304 NaN NaN 2017-02-14 01:35:49 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all https://t.co/jd6lYhfdH4 NaN NaN NaN https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1 13 10 None None None pupper None
353 831309418084069378 NaN NaN 2017-02-14 01:09:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Scooter and his son Montoya. Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V NaN NaN NaN https://twitter.com/dog_rates/status/831309418084069378/photo/1 12 10 Scooter None None None None
354 831262627380748289 NaN NaN 2017-02-13 22:03:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY NaN NaN NaN https://twitter.com/dog_rates/status/831262627380748289/photo/1 12 10 Tucker None None None None
355 830956169170665475 NaN NaN 2017-02-13 01:46:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5 NaN NaN NaN https://twitter.com/dog_rates/status/830956169170665475/video/1 12 10 Reggie None None None None
356 830583320585068544 NaN NaN 2017-02-12 01:04:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 NaN NaN NaN https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1 13 10 Lilly None None None None
357 830173239259324417 NaN NaN 2017-02-10 21:54:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionate… 8.092201e+17 4.196984e+09 2016-12-15 02:14:29 +0000 https://twitter.com/dog_rates/status/809220051211603969/photo/1,https://twitter.com/dog_rates/status/809220051211603969/photo/1 12 10 Kyro None None None None
358 830097400375152640 NaN NaN 2017-02-10 16:53:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Samson. He's absolute fluffy perfection. Easily 13/10, but he needs your help. Click the link to find out more\n\nhttps://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW NaN NaN NaN https://www.gofundme.com/sick-baby-samson,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1 13 10 Samson None None None None
359 829878982036299777 NaN NaN 2017-02-10 02:25:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR 8.269587e+17 4.196984e+09 2017-02-02 01:01:21 +0000 https://twitter.com/dog_rates/status/826958653328592898/photo/1,https://twitter.com/dog_rates/status/826958653328592898/photo/1 12 10 Loki doggo None None None
360 829861396166877184 NaN NaN 2017-02-10 01:15:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU NaN NaN NaN https://twitter.com/dog_rates/status/829861396166877184/photo/1 12 10 Mia None None None None
361 829501995190984704 NaN NaN 2017-02-09 01:27:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul NaN NaN NaN https://twitter.com/dog_rates/status/829501995190984704/photo/1,https://twitter.com/dog_rates/status/829501995190984704/photo/1 12 10 Leo None None None None
362 829449946868879360 NaN NaN 2017-02-08 22:00:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB NaN NaN NaN https://twitter.com/dog_rates/status/829449946868879360/photo/1 11 10 None doggo None None None
363 829374341691346946 NaN NaN 2017-02-08 17:00:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao NaN NaN NaN https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1 13 10 Astrid doggo None None None
364 829141528400556032 NaN NaN 2017-02-08 01:35:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR NaN NaN NaN https://twitter.com/dog_rates/status/829141528400556032/photo/1,https://twitter.com/dog_rates/status/829141528400556032/photo/1 12 10 Malcolm None None None None
365 829011960981237760 NaN NaN 2017-02-07 17:00:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is NaN NaN NaN https://twitter.com/dog_rates/status/829011960981237760/photo/1,https://twitter.com/dog_rates/status/829011960981237760/photo/1 13 10 Dexter None None None None
366 828801551087042563 NaN NaN 2017-02-07 03:04:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https… 8.102541e+17 4.196984e+09 2016-12-17 22:43:27 +0000 https://twitter.com/dog_rates/status/810254108431155201/photo/1 12 10 Gus None None None None
367 828770345708580865 NaN NaN 2017-02-07 01:00:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Alfie. He's your Lyft for tonight. Kindly requests you buckle pup and remain reasonably calm during the ride. 13/10 he must focus https://t.co/AqPTHYUBFz NaN NaN NaN https://twitter.com/dog_rates/status/828770345708580865/photo/1 13 10 Alfie None None None None
368 828708714936930305 NaN NaN 2017-02-06 20:55:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Fiona. She's an exotic dog. Seems rather impatient. Jaw extension on another level tho. Looks slippery. 10/10 would still pet https://t.co/vst2SEVJO3 NaN NaN NaN https://twitter.com/dog_rates/status/828708714936930305/photo/1,https://twitter.com/dog_rates/status/828708714936930305/photo/1 10 10 Fiona None None None None
369 828650029636317184 NaN NaN 2017-02-06 17:02:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK NaN NaN NaN https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1 14 10 one None None None None
370 828409743546925057 NaN NaN 2017-02-06 01:07:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt NaN NaN NaN https://twitter.com/dog_rates/status/828409743546925057/photo/1 12 10 Mutt None None None None
371 828408677031882754 NaN NaN 2017-02-06 01:03:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10 deep breaths Bear https://t.co/7WFLKli2T3 NaN NaN NaN https://twitter.com/dog_rates/status/828408677031882754/photo/1 12 10 Bear None None None None
372 828381636999917570 NaN NaN 2017-02-05 23:15:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9 NaN NaN NaN https://twitter.com/dog_rates/status/828381636999917570/photo/1 14 10 Doobert doggo None None None
373 828376505180889089 NaN NaN 2017-02-05 22:55:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR NaN NaN NaN https://twitter.com/dog_rates/status/828376505180889089/photo/1 13 10 Beebop None None None None
374 828372645993398273 NaN NaN 2017-02-05 22:40:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS NaN NaN NaN https://twitter.com/dog_rates/status/828372645993398273/photo/1 12 10 Alexander None None None None
375 828361771580813312 NaN NaN 2017-02-05 21:56:51 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Beebop and Doobert should start a band 12/10 would listen NaN NaN NaN NaN 12 10 None None None None None
376 828046555563323392 NaN NaN 2017-02-05 01:04:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sailer. He waits on the roof for his owners to come home. Nobody knows how he gets up there. H*ckin loyal af. 13/10 https://t.co/O37z4jaMG9 NaN NaN NaN https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1 13 10 Sailer None None None None
377 828011680017821696 NaN NaN 2017-02-04 22:45:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB NaN NaN NaN https://twitter.com/dog_rates/status/828011680017821696/photo/1,https://twitter.com/dog_rates/status/828011680017821696/photo/1 11 10 Brutus None None None None
378 827933404142436356 NaN NaN 2017-02-04 17:34:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ NaN NaN NaN https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1 12 10 Kona None None pupper None
379 827653905312006145 NaN NaN 2017-02-03 23:04:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3 NaN NaN NaN https://twitter.com/dog_rates/status/827653905312006145/photo/1 12 10 Boots None None None None
380 827600520311402496 NaN NaN 2017-02-03 19:31:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb NaN NaN NaN https://twitter.com/dog_rates/status/827600520311402496/photo/1 13 10 Tucker None None None None
381 827324948884643840 NaN NaN 2017-02-03 01:16:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5 NaN NaN NaN https://twitter.com/dog_rates/status/827324948884643840/photo/1 12 10 Ralphie None None None None
382 827228250799742977 NaN NaN 2017-02-02 18:52:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://… 6.946697e+17 4.196984e+09 2016-02-02 23:52:22 +0000 https://twitter.com/dog_rates/status/694669722378485760/photo/1,https://twitter.com/dog_rates/status/694669722378485760/photo/1 12 10 Phil None None None None
383 827199976799354881 NaN NaN 2017-02-02 17:00:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charlie. He wins every game of chess he plays. Won't let opponent pet him until they forfeit. 13/10 you win again Charlie https://t.co/UkyQibIBzZ NaN NaN NaN https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1 13 10 Charlie None None None None
384 826958653328592898 NaN NaN 2017-02-02 01:01:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR NaN NaN NaN https://twitter.com/dog_rates/status/826958653328592898/photo/1 12 10 Loki doggo None None None
385 826848821049180160 NaN NaN 2017-02-01 17:44:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cupid. He was found in the trash. Now he's well on his way to prosthetic front legs and a long happy doggo life. 13/10 heroic af https://t.co/WS0Gha8vRh NaN NaN NaN https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1 13 10 Cupid doggo None None None
386 826615380357632002 NaN NaN 2017-02-01 02:17:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https:/… 8.099208e+17 4.196984e+09 2016-12-17 00:38:52 +0000 https://twitter.com/dog_rates/status/809920764300447744/photo/1 10 10 None None None None None
387 826598799820865537 8.265984e+17 4.196984e+09 2017-02-01 01:11:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I was going to do 007/10, but the joke wasn't worth the &lt;10 rating NaN NaN NaN NaN 7 10 None None None None None
388 826598365270007810 NaN NaN 2017-02-01 01:09:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I NaN NaN NaN https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1 13 10 Pawnd None None None None
389 826476773533745153 NaN NaN 2017-01-31 17:06:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh NaN NaN NaN https://twitter.com/dog_rates/status/826476773533745153/photo/1 12 10 Pilot doggo None None None
390 826240494070030336 NaN NaN 2017-01-31 01:27:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C NaN NaN NaN https://twitter.com/dog_rates/status/826240494070030336/photo/1 11 10 None None None None None
391 826204788643753985 NaN NaN 2017-01-30 23:05:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX NaN NaN NaN http://us.blastingnews.com/news/2017/01/kentucky-teen-helps-lost-yellow-labrador-and-gets-a-huge-surprise-001431969.html?sbdht=_pM1QUzk3wsenGU1giO7UnJ5NGGiKRW9AD5xs2MkaDpYY13JxbtKE4w2_,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1 13 10 None doggo None None None
392 826115272272650244 NaN NaN 2017-01-30 17:10:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ike. He's demonstrating the pupmost restraint. 13/10 super good boy https://t.co/6gHoGah9nm NaN NaN NaN https://twitter.com/dog_rates/status/826115272272650244/photo/1 13 10 Ike None None None None
393 825876512159186944 NaN NaN 2017-01-30 01:21:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mo. No one will push him around in the grocery cart. He's quite pupset about it. 11/10 I volunteer https://t.co/feNwTq12S5 NaN NaN NaN https://twitter.com/dog_rates/status/825876512159186944/photo/1 11 10 Mo None None None None
394 825829644528148480 NaN NaN 2017-01-29 22:15:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM NaN NaN NaN https://twitter.com/dog_rates/status/825829644528148480/photo/1,https://twitter.com/dog_rates/status/825829644528148480/photo/1 12 10 Toby None None None None
395 825535076884762624 NaN NaN 2017-01-29 02:44:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1 NaN NaN NaN https://twitter.com/dog_rates/status/825535076884762624/photo/1 14 10 None None None None puppo
396 825147591692263424 NaN NaN 2017-01-28 01:04:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD NaN NaN NaN https://twitter.com/dog_rates/status/825147591692263424/photo/1 13 10 Sweet None None None None
397 825120256414846976 NaN NaN 2017-01-27 23:16:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps:/… 8.250266e+17 4.196984e+09 2017-01-27 17:04:02 +0000 https://www.gofundme.com/my-puppys-double-cataract-surgery,https://twitter.com/dog_rates/status/825026590719483904/photo/1,https://twitter.com/dog_rates/status/825026590719483904/photo/1 12 10 Pablo None None None puppo
398 825026590719483904 NaN NaN 2017-01-27 17:04:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc NaN NaN NaN https://www.gofundme.com/my-puppys-double-cataract-surgery,https://twitter.com/dog_rates/status/825026590719483904/photo/1,https://twitter.com/dog_rates/status/825026590719483904/photo/1 12 10 Pablo None None None puppo
399 824796380199809024 NaN NaN 2017-01-27 01:49:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E 7.950767e+17 4.196984e+09 2016-11-06 01:33:58 +0000 https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1 11 10 Bailey None None None None
400 824775126675836928 NaN NaN 2017-01-27 00:24:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI NaN NaN NaN https://twitter.com/dog_rates/status/824775126675836928/photo/1,https://twitter.com/dog_rates/status/824775126675836928/photo/1 12 10 Scooter None None None None
401 824663926340194305 NaN NaN 2017-01-26 17:02:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM NaN NaN NaN https://twitter.com/dog_rates/status/824663926340194305/photo/1 13 10 Wilson None None None None
402 824325613288833024 NaN NaN 2017-01-25 18:38:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS NaN NaN NaN https://twitter.com/dog_rates/status/824325613288833024/photo/1 13 10 None None None pupper None
403 824297048279236611 NaN NaN 2017-01-25 16:45:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt NaN NaN NaN https://twitter.com/dog_rates/status/824297048279236611/photo/1,https://twitter.com/dog_rates/status/824297048279236611/photo/1 11 10 Nala None None None None
404 824025158776213504 NaN NaN 2017-01-24 22:44:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "I wish we were dogs" 14/10 for @BadlandsNPS https://t.co/50qq2DItPW NaN NaN NaN https://twitter.com/badlandsnps/status/823966201328046080 14 10 None None None None None
405 823939628516474880 NaN NaN 2017-01-24 17:04:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw NaN NaN NaN https://twitter.com/dog_rates/status/823939628516474880/photo/1 12 10 Cash None None None None
406 823719002937630720 NaN NaN 2017-01-24 02:28:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC 7.840579e+17 4.196984e+09 2016-10-06 15:49:14 +0000 https://vine.co/v/5gKxeUpuKEr,https://vine.co/v/5gKxeUpuKEr 12 10 Balto None None None None
407 823699002998870016 NaN NaN 2017-01-24 01:08:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL NaN NaN NaN https://twitter.com/dog_rates/status/823699002998870016/photo/1 12 10 Winston None None None None
408 823581115634085888 NaN NaN 2017-01-23 17:20:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U NaN NaN NaN https://twitter.com/dog_rates/status/823581115634085888/photo/1 11 10 Crawford None None None None
409 823333489516937216 8.233264e+17 1.582854e+09 2017-01-23 00:56:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @HistoryInPics 13/10 NaN NaN NaN NaN 13 10 None None None None None
410 823322678127919110 NaN NaN 2017-01-23 00:13:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wyatt. He's got the fastest paws in the West. H*ckin deadly. 11/10 would ride into the sunset with https://t.co/stkJ377KK7 NaN NaN NaN https://twitter.com/dog_rates/status/823322678127919110/photo/1,https://twitter.com/dog_rates/status/823322678127919110/photo/1 11 10 Wyatt None None None None
411 823269594223824897 NaN NaN 2017-01-22 20:42:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 8.222448e+17 4.196984e+09 2017-01-20 00:50:15 +0000 https://twitter.com/dog_rates/status/822244816520155136/photo/1,https://twitter.com/dog_rates/status/822244816520155136/photo/1 11 10 None None None None None
412 822975315408461824 NaN NaN 2017-01-22 01:12:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Albus. He's soaked as h*ck. Seems to have misplaced an ear as well. Still in good spirits tho. 12/10 would dry https://t.co/yUM8jYStuG NaN NaN NaN https://twitter.com/dog_rates/status/822975315408461824/photo/1 12 10 Albus None None None None
413 822872901745569793 NaN NaN 2017-01-21 18:26:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 https://t.co/nTz3FtorBc NaN NaN NaN https://twitter.com/dog_rates/status/822872901745569793/photo/1 13 10 None None None None puppo
414 822859134160621569 NaN NaN 2017-01-21 17:31:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS NaN NaN NaN https://twitter.com/dog_rates/status/822859134160621569/photo/1 12 10 Hobbes None None None None
415 822647212903690241 NaN NaN 2017-01-21 03:29:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E 8.224891e+17 4.196984e+09 2017-01-20 17:00:46 +0000 https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1 13 10 Paisley None None None None
416 822610361945911296 NaN NaN 2017-01-21 01:02:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh NaN NaN NaN https://twitter.com/dog_rates/status/822610361945911296/photo/1 12 10 None None None None None
417 822489057087389700 NaN NaN 2017-01-20 17:00:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E NaN NaN NaN https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1 13 10 Paisley None None None None
418 822462944365645825 NaN NaN 2017-01-20 15:17:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO NaN NaN NaN https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1 14 10 Gabe None None pupper None
419 822244816520155136 NaN NaN 2017-01-20 00:50:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 NaN NaN NaN https://twitter.com/dog_rates/status/822244816520155136/photo/1 11 10 None None None None None
420 822163064745328640 NaN NaN 2017-01-19 19:25:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https:… 7.862340e+17 4.196984e+09 2016-10-12 15:55:59 +0000 https://twitter.com/dog_rates/status/786233965241827333/photo/1 11 10 Mattie None None None None
421 821886076407029760 NaN NaN 2017-01-19 01:04:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV NaN NaN NaN https://twitter.com/dog_rates/status/821886076407029760/photo/1 13 10 Jimison None None None None
422 821813639212650496 NaN NaN 2017-01-18 20:16:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG 7.806013e+17 4.196984e+09 2016-09-27 02:53:48 +0000 https://twitter.com/dog_rates/status/780601303617732608/photo/1,https://twitter.com/dog_rates/status/780601303617732608/photo/1 12 10 Hercules None None None None
423 821765923262631936 NaN NaN 2017-01-18 17:07:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52 NaN NaN NaN https://twitter.com/dog_rates/status/821765923262631936/photo/1 13 10 Duchess doggo None None None
424 821522889702862852 NaN NaN 2017-01-18 01:01:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn NaN NaN NaN https://twitter.com/dog_rates/status/821522889702862852/photo/1 13 10 Harlso None None None None
425 821421320206483457 NaN NaN 2017-01-17 18:17:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co… 7.823059e+17 4.196984e+09 2016-10-01 19:47:08 +0000 https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1 12 10 Sampson doggo None None None
426 821407182352777218 NaN NaN 2017-01-17 17:21:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG NaN NaN NaN https://twitter.com/dog_rates/status/821407182352777218/video/1 14 10 Sundance doggo None None None
427 821153421864615936 8.211526e+17 1.132119e+08 2017-01-17 00:33:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @imgur for a polar bear tho I'd say 13/10 is appropriate NaN NaN NaN NaN 13 10 None None None None None
428 821149554670182400 NaN NaN 2017-01-17 00:18:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2 NaN NaN NaN https://twitter.com/dog_rates/status/821149554670182400/video/1 12 10 Luca None None None None
429 821107785811234820 NaN NaN 2017-01-16 21:32:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl NaN NaN NaN https://twitter.com/dog_rates/status/821107785811234820/photo/1 11 10 None doggo None None None
430 821044531881721856 NaN NaN 2017-01-16 17:20:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu NaN NaN NaN https://twitter.com/dog_rates/status/821044531881721856/photo/1 12 10 Flash None None None None
431 820837357901512704 NaN NaN 2017-01-16 03:37:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5… 8.192277e+17 4.196984e+09 2017-01-11 17:01:16 +0000 https://twitter.com/dog_rates/status/819227688460238848/photo/1 12 10 Finn None None None None
432 820749716845686786 NaN NaN 2017-01-15 21:49:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1 NaN NaN NaN https://twitter.com/dog_rates/status/820749716845686786/photo/1,https://twitter.com/dog_rates/status/820749716845686786/photo/1 13 10 Sunny None None None None
433 820690176645140481 NaN NaN 2017-01-15 17:52:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd NaN NaN NaN https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1 84 70 None None None None None
434 820494788566847489 NaN NaN 2017-01-15 04:56:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t… 8.203146e+17 4.196984e+09 2017-01-14 17:00:24 +0000 https://www.loveyourmelon.com/pages/ourstory,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1 14 10 None None None None None
435 820446719150292993 NaN NaN 2017-01-15 01:45:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg 8.001414e+17 4.196984e+09 2016-11-20 00:59:15 +0000 https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1 13 10 Peaches None None None None
436 820314633777061888 NaN NaN 2017-01-14 17:00:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE NaN NaN NaN https://www.loveyourmelon.com/pages/ourstory,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1 14 10 None None None None None
437 820078625395449857 NaN NaN 2017-01-14 01:22:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I've never wanted to go to a camp more in my entire life. 12/10 for all on board https://t.co/wJZlpGFEbD NaN NaN NaN https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1 12 10 None None None None None
438 820013781606658049 NaN NaN 2017-01-13 21:04:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://… 8.199522e+17 4.196984e+09 2017-01-13 17:00:21 +0000 https://www.gofundme.com/servicedogoliver,https://twitter.com/dog_rates/status/819952236453363712/photo/1 13 10 Oliver None None None puppo
439 819952236453363712 NaN NaN 2017-01-13 17:00:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb NaN NaN NaN https://www.gofundme.com/servicedogoliver,https://twitter.com/dog_rates/status/819952236453363712/photo/1 13 10 Oliver None None None puppo
440 819924195358416896 NaN NaN 2017-01-13 15:08:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him https://t.co/XdRNXNYD4E NaN NaN NaN https://twitter.com/dog_rates/status/819924195358416896/video/1 11 10 None doggo None None None
441 819711362133872643 NaN NaN 2017-01-13 01:03:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Howie. He just bloomed. 11/10 revolutionary af https://t.co/m5fYxrO3IU NaN NaN NaN https://twitter.com/dog_rates/status/819711362133872643/photo/1,https://twitter.com/dog_rates/status/819711362133872643/photo/1 11 10 Howie None None None None
442 819588359383371776 NaN NaN 2017-01-12 16:54:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO NaN NaN NaN https://twitter.com/dog_rates/status/819588359383371776/photo/1 13 10 Jazzy None None None None
443 819347104292290561 NaN NaN 2017-01-12 00:55:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W NaN NaN NaN https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1 12 10 Anna None None None None
444 819238181065359361 NaN NaN 2017-01-11 17:42:57 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Some happy pupper news to share. 10/10 for everyone involved \nhttps://t.co/MefMAZX2uv NaN NaN NaN http://us.blastingnews.com/news/2017/01/200-dogs-saved-from-south-korean-dog-meat-industry-001385441.html?sbdht=_pM1QUzk3wsfscF9XF2WEd9KoWDpsQlMUjfh1HxxUq0u5mMbiu2B0kw2_ 10 10 None None None pupper None
445 819227688460238848 NaN NaN 2017-01-11 17:01:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT NaN NaN NaN https://twitter.com/dog_rates/status/819227688460238848/photo/1 12 10 Finn None None None None
446 819015337530290176 NaN NaN 2017-01-11 02:57:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 8.190048e+17 4.196984e+09 2017-01-11 02:15:36 +0000 https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1 14 10 Bo doggo None None None
447 819015331746349057 NaN NaN 2017-01-11 02:57:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb 8.190064e+17 4.196984e+09 2017-01-11 02:21:57 +0000 https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1 14 10 Sunny doggo None None None
448 819006400881917954 NaN NaN 2017-01-11 02:21:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb NaN NaN NaN https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1 14 10 Sunny doggo None None None
449 819004803107983360 NaN NaN 2017-01-11 02:15:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 NaN NaN NaN https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1 14 10 Bo doggo None None None
450 818646164899774465 NaN NaN 2017-01-10 02:30:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM 8.083449e+17 4.196984e+09 2016-12-12 16:16:49 +0000 https://vine.co/v/5QWd3LZqXxd,https://vine.co/v/5QWd3LZqXxd 11 10 Seamus None None None None
451 818627210458333184 NaN NaN 2017-01-10 01:15:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG NaN NaN NaN https://twitter.com/dog_rates/status/818627210458333184/photo/1 13 10 Wafer None None None None
452 818614493328580609 NaN NaN 2017-01-10 00:24:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bear. He's a passionate believer of the outdoors. Leaves excite him. 12/10 would hug softly https://t.co/FOF0hBDxP8 NaN NaN NaN https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1 12 10 Bear None None None None
453 818588835076603904 NaN NaN 2017-01-09 22:42:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb 7.735476e+17 4.196984e+09 2016-09-07 15:44:53 +0000 https://twitter.com/dog_rates/status/773547596996571136/photo/1,https://twitter.com/dog_rates/status/773547596996571136/photo/1 11 10 Chelsea None None pupper None
454 818536468981415936 NaN NaN 2017-01-09 19:14:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tom. He's a silly dog. Known for his unconventional swing style. One h*ck of a sneaky tongue slip too. 11/10 would push https://t.co/6fSVcn9HAU NaN NaN NaN https://twitter.com/dog_rates/status/818536468981415936/photo/1 11 10 Tom None None None None
455 818307523543449600 NaN NaN 2017-01-09 04:04:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i… 8.164506e+17 4.196984e+09 2017-01-04 01:05:59 +0000 https://twitter.com/dog_rates/status/816450570814898180/photo/1,https://twitter.com/dog_rates/status/816450570814898180/photo/1 13 10 Moose None None None None
456 818259473185828864 NaN NaN 2017-01-09 00:53:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib NaN NaN NaN https://twitter.com/dog_rates/status/818259473185828864/photo/1 12 10 Florence None None None None
457 818145370475810820 NaN NaN 2017-01-08 17:20:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z NaN NaN NaN https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1 11 10 Autumn None None None None
458 817908911860748288 NaN NaN 2017-01-08 01:40:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Looks like he went cross-eyed trying way too hard to use the force. 12/10 \nhttps://t.co/bbuKxk0fM8 NaN NaN NaN https://twitter.com/micahgrimes/status/817902080979599361 12 10 None None None None None
459 817827839487737858 NaN NaN 2017-01-07 20:18:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA NaN NaN NaN https://twitter.com/dog_rates/status/817827839487737858/video/1 13 10 Buddy None None None None
460 817777686764523521 NaN NaN 2017-01-07 16:59:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dido. She's playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7 NaN NaN NaN https://twitter.com/dog_rates/status/817777686764523521/video/1 13 10 Dido doggo None pupper None
461 817536400337801217 NaN NaN 2017-01-07 01:00:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Eugene &amp; Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu NaN NaN NaN https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1 12 10 Eugene None None None None
462 817502432452313088 NaN NaN 2017-01-06 22:45:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https:/… 6.924173e+17 4.196984e+09 2016-01-27 18:42:06 +0000 https://twitter.com/dog_rates/status/692417313023332352/photo/1 7 10 Herschel None None pupper None
463 817423860136083457 NaN NaN 2017-01-06 17:33:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ NaN NaN NaN https://twitter.com/dog_rates/status/817423860136083457/video/1 13 10 Ken None None None None
464 817415592588222464 NaN NaN 2017-01-06 17:00:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 NaN NaN NaN https://www.gofundme.com/help-strudel-walk-again?rcid=ec2be8b6f825461f8ee0fd5dcdf43fea,https://twitter.com/dog_rates/status/817415592588222464/photo/1 11 10 Strudel None None None None
465 817181837579653120 NaN NaN 2017-01-06 01:31:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k 8.159661e+17 4.196984e+09 2017-01-02 17:00:46 +0000 https://twitter.com/dog_rates/status/815966073409433600/video/1,https://twitter.com/dog_rates/status/815966073409433600/video/1 13 10 None None None pupper None
466 817171292965273600 NaN NaN 2017-01-06 00:49:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw NaN NaN NaN https://twitter.com/dog_rates/status/817171292965273600/photo/1 13 10 Tebow None None None None
467 817120970343411712 NaN NaN 2017-01-05 21:29:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T NaN NaN NaN https://twitter.com/dog_rates/status/817120970343411712/photo/1 13 10 None None None None None
468 817056546584727552 NaN NaN 2017-01-05 17:13:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH NaN NaN NaN https://twitter.com/dog_rates/status/817056546584727552/photo/1 11 10 Chloe None None None None
469 816829038950027264 NaN NaN 2017-01-05 02:09:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI 7.909461e+17 4.196984e+09 2016-10-25 16:00:09 +0000 https://twitter.com/dog_rates/status/790946055508652032/photo/1,https://twitter.com/dog_rates/status/790946055508652032/photo/1 12 10 Betty None None None puppo
470 816816676327063552 NaN NaN 2017-01-05 01:20:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9 NaN NaN NaN https://twitter.com/dog_rates/status/816816676327063552/photo/1 12 10 Timber None None None None
471 816697700272001025 NaN NaN 2017-01-04 17:27:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF NaN NaN NaN https://twitter.com/dog_rates/status/816697700272001025/photo/1,https://twitter.com/dog_rates/status/816697700272001025/photo/1 12 10 Binky None None None None
472 816450570814898180 NaN NaN 2017-01-04 01:05:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k NaN NaN NaN https://twitter.com/dog_rates/status/816450570814898180/photo/1,https://twitter.com/dog_rates/status/816450570814898180/photo/1 13 10 Moose None None None None
473 816336735214911488 NaN NaN 2017-01-03 17:33:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY NaN NaN NaN https://twitter.com/dog_rates/status/816336735214911488/photo/1 11 10 Dudley None None None None
474 816091915477250048 NaN NaN 2017-01-03 01:20:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi NaN NaN NaN https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1 12 10 Comet None None None None
475 816062466425819140 NaN NaN 2017-01-02 23:23:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://… 8.159907e+17 4.196984e+09 2017-01-02 18:38:42 +0000 https://www.gofundme.com/surgeryforjacktheminpin,https://twitter.com/dog_rates/status/815990720817401858/photo/1 11 10 Jack None None None None
476 816014286006976512 NaN NaN 2017-01-02 20:12:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r 7.320056e+17 4.196984e+09 2016-05-16 00:31:53 +0000 https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1 11 10 Larry None None None None
477 815990720817401858 NaN NaN 2017-01-02 18:38:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p NaN NaN NaN https://www.gofundme.com/surgeryforjacktheminpin,https://twitter.com/dog_rates/status/815990720817401858/photo/1 11 10 Jack None None None None
478 815966073409433600 NaN NaN 2017-01-02 17:00:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k NaN NaN NaN https://twitter.com/dog_rates/status/815966073409433600/video/1 13 10 None None None pupper None
479 815745968457060357 NaN NaN 2017-01-02 02:26:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets h… 7.914070e+17 4.196984e+09 2016-10-26 22:31:36 +0000 https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1 12 10 Levi None None None None
480 815736392542261248 NaN NaN 2017-01-02 01:48:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Akumi. It's his birthday. He received many lickable gifts. 11/10 happy h*ckin birthday https://t.co/gd9UlLOCQ0 NaN NaN NaN https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1 11 10 Akumi None None None None
481 815639385530101762 NaN NaN 2017-01-01 19:22:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Titan. His nose is quite chilly. Requests to return to the indoors. 12/10 would boop to warm https://t.co/bLZuOh9sKy NaN NaN NaN https://twitter.com/dog_rates/status/815639385530101762/photo/1 12 10 Titan None None None None
482 815390420867969024 NaN NaN 2017-01-01 02:53:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy New Year from the squad! 13/10 for all https://t.co/9njRxyUd5L NaN NaN NaN https://twitter.com/dog_rates/status/815390420867969024/photo/1 13 10 None None None None None
483 814986499976527872 NaN NaN 2016-12-31 00:08:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cooper. Someone attacked him with a sharpie. Poor pupper. 11/10 nifty tongue slip tho https://t.co/01vpuRDXQ8 NaN NaN NaN https://twitter.com/dog_rates/status/814986499976527872/photo/1 11 10 Cooper None None pupper None
484 814638523311648768 NaN NaN 2016-12-30 01:05:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Olivia. She's a passionate advocate of candid selfies. 12/10 would boop shnoop https://t.co/0LdNjoiNbv NaN NaN NaN https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1 12 10 Olivia None None None None
485 814578408554463233 NaN NaN 2016-12-29 21:06:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Beau &amp; Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https:/… 6.981954e+17 4.196984e+09 2016-02-12 17:22:12 +0000 https://twitter.com/dog_rates/status/698195409219559425/photo/1 9 10 Beau None None None None
486 814530161257443328 NaN NaN 2016-12-29 17:54:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Alf. Someone just rubbed a balloon on his head. He's only a little pupset about it. 12/10 would pet well https://t.co/IOdgfnSE9G NaN NaN NaN https://twitter.com/dog_rates/status/814530161257443328/photo/1 12 10 Alf None None None None
487 814153002265309185 NaN NaN 2016-12-28 16:56:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oshie. He's ready to party. Bought that case himself. 12/10 someone tell Oshie it's Wednesday morning https://t.co/YIJo7X7K9J NaN NaN NaN https://twitter.com/dog_rates/status/814153002265309185/photo/1 12 10 Oshie None None None None
488 813944609378369540 NaN NaN 2016-12-28 03:08:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 7.902771e+17 4.196984e+09 2016-10-23 19:42:02 +0000 https://twitter.com/dog_rates/status/790277117346975746/photo/1,https://twitter.com/dog_rates/status/790277117346975746/photo/1 11 10 Bruce None None None None
489 813910438903693312 NaN NaN 2016-12-28 00:52:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chubbs. He dug a hole and now he's stuck in it. Dang h*ckin doggo. 11/10 would assist https://t.co/z1VRj1cYZf NaN NaN NaN https://twitter.com/dog_rates/status/813910438903693312/photo/1 11 10 Chubbs doggo None None None
490 813812741911748608 NaN NaN 2016-12-27 18:24:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Gary, Carrie Fisher's dog. Idk what I can say about Gary that reflects the inspirational awesomeness that was Carrie Fisher. 14/10 RIP https://t.co/uBnQTNEeGg NaN NaN NaN https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1 14 10 Gary None None None None
491 813800681631023104 NaN NaN 2016-12-27 17:36:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sky. She's learning how to roll her R's. 12/10 cultured af https://t.co/OuaVvVkwJ1 NaN NaN NaN https://twitter.com/dog_rates/status/813800681631023104/photo/1 12 10 Sky None None None None
492 813217897535406080 NaN NaN 2016-12-26 03:00:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is Atlas. He went all out this year. 13/10 downright magical af https://t.co/DVYIZOnO81 NaN NaN NaN https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1 13 10 Atlas None None None None
493 813202720496779264 NaN NaN 2016-12-26 02:00:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 https://t.co/cD967DjnIn NaN NaN NaN https://twitter.com/dog_rates/status/813202720496779264/photo/1 11 10 None doggo None None None
494 813187593374461952 NaN NaN 2016-12-26 01:00:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 https://t.co/rvSANEsQZJ NaN NaN NaN https://twitter.com/dog_rates/status/813187593374461952/photo/1 13 10 None None None None None
495 813172488309972993 NaN NaN 2016-12-26 00:00:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Eleanor. She winks like she knows many things that you don't. 12/10 https://t.co/bxGwkJa2kE NaN NaN NaN https://twitter.com/dog_rates/status/813172488309972993/photo/1 12 10 Eleanor None None None None
496 813157409116065792 NaN NaN 2016-12-25 23:00:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Layla. It is her first Christmas. She got to be one of the presents. 12/10 I wish my presents would bark https://t.co/hwhCbhCjnV NaN NaN NaN https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1 12 10 Layla None None None None
497 813142292504645637 NaN NaN 2016-12-25 22:00:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 https://t.co/KK4XQK9SPi NaN NaN NaN https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1 13 10 None None None None None
498 813130366689148928 8.131273e+17 4.196984e+09 2016-12-25 21:12:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I've been informed by multiple sources that this is actually a dog elf who's tired from helping Santa all night. Pupgraded to 12/10 NaN NaN NaN NaN 12 10 None None None None None
499 813127251579564032 NaN NaN 2016-12-25 21:00:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup https://t.co/BzITyGw3JA NaN NaN NaN https://twitter.com/dog_rates/status/813127251579564032/photo/1,https://twitter.com/dog_rates/status/813127251579564032/photo/1 11 10 None doggo None None None
500 813112105746448384 NaN NaN 2016-12-25 20:00:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Toby. He's pupset because his hat isn't big enough. Christmas is ruined. 12/10 it'll be ok Toby https://t.co/zfdaGZlweq NaN NaN NaN https://twitter.com/dog_rates/status/813112105746448384/photo/1 12 10 Toby None None None None
501 813096984823349248 NaN NaN 2016-12-25 19:00:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rocky. He got triple-doggo-dared. Stuck af. 11/10 someone help him https://t.co/soNL00XWVu NaN NaN NaN https://twitter.com/dog_rates/status/813096984823349248/photo/1 11 10 Rocky doggo None None None
502 813081950185472002 NaN NaN 2016-12-25 18:00:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Baron. He's officially festive as h*ck. Thinks it's just a fancy scarf. 11/10 would pat head approvingly https://t.co/PjulYEXTvg NaN NaN NaN https://twitter.com/dog_rates/status/813081950185472002/photo/1,https://twitter.com/dog_rates/status/813081950185472002/photo/1 11 10 Baron None None None None
503 813066809284972545 NaN NaN 2016-12-25 17:00:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tyr. He is disgusted by holiday traffic. Just trying to get to Christmas brunch on time. 12/10 hurry up pup https://t.co/syuTXARdtN NaN NaN NaN https://twitter.com/dog_rates/status/813066809284972545/photo/1 12 10 Tyr None None None None
504 813051746834595840 NaN NaN 2016-12-25 16:00:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bauer. He had nothing to do with the cookies that disappeared. 13/10 very good boy https://t.co/AIMF8ouzvl NaN NaN NaN https://twitter.com/dog_rates/status/813051746834595840/photo/1 13 10 Bauer None None None None
505 812781120811126785 NaN NaN 2016-12-24 22:04:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Swagger. He's the Cleveland Browns ambassador. Hype as h*ck after that first win today. 10/10 https://t.co/lXFM1l22bG NaN NaN NaN https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1 10 10 Swagger None None None None
506 812747805718642688 NaN NaN 2016-12-24 19:52:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.c… 6.800555e+17 4.196984e+09 2015-12-24 16:00:30 +0000 https://twitter.com/dog_rates/status/680055455951884288/photo/1 10 10 Sammy None None None None
507 812709060537683968 NaN NaN 2016-12-24 17:18:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brandi and Harley. They are practicing their caroling for later. Both 12/10 festive af https://t.co/AbBDuGZUpp NaN NaN NaN https://twitter.com/dog_rates/status/812709060537683968/photo/1 12 10 Brandi None None None None
508 812503143955202048 NaN NaN 2016-12-24 03:40:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I'm happy to inform you all that Jake is in excellent hands. 13/10 for him and his new family \nhttps://t.co/LRCTJpnCnS https://t.co/wZz7fI6XO1 NaN NaN NaN https://m.facebook.com/story.php?story_fbid=1888712391349242&id=1506300642923754&refsrc=http%3A%2F%2Ft.co%2FURVffYPPjY&_rdr,https://twitter.com/dog_rates/status/812503143955202048/photo/1,https://twitter.com/dog_rates/status/812503143955202048/photo/1 13 10 None None None None None
509 812466873996607488 NaN NaN 2016-12-24 01:16:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mary. She's desperately trying to recreate her Coachella experience. 12/10 downright h*ckin adorable https://t.co/BAJrfPvtux NaN NaN NaN https://twitter.com/dog_rates/status/812466873996607488/photo/1 12 10 Mary None None None None
510 812372279581671427 NaN NaN 2016-12-23 19:00:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Moe. He's a fetty woof. Got a cardboard cutout of himself for Christmas. 13/10 inspirational af https://t.co/gCnAeL2mvT NaN NaN NaN https://twitter.com/dog_rates/status/812372279581671427/photo/1,https://twitter.com/dog_rates/status/812372279581671427/photo/1 13 10 Moe None None None None
511 811985624773361665 NaN NaN 2016-12-22 17:23:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Ted. He accidentally opened the front facing camera. 11/10 h*ckin unpupared https://t.co/sIB5C6FDop NaN NaN NaN https://twitter.com/dog_rates/status/811985624773361665/photo/1 11 10 Ted None None None None
512 811744202451197953 NaN NaN 2016-12-22 01:24:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Halo. She likes watermelon. 13/10 https://t.co/TZkiQZqwA6 NaN NaN NaN https://twitter.com/dog_rates/status/811744202451197953/photo/1 13 10 Halo None None None None
513 811647686436880384 8.116272e+17 4.196984e+09 2016-12-21 19:01:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> PUPDATE: I've been informed that Augie was actually bringing his family these flowers when he tripped. Very good boy. Pupgraded to 11/10 NaN NaN NaN NaN 11 10 None None None None None
514 811627233043480576 NaN NaN 2016-12-21 17:39:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Augie. He's a savage. Doesn't give a h*ck about your garden. Still 10/10 would forgive then pet https://t.co/IU8S0n4oxn NaN NaN NaN https://twitter.com/dog_rates/status/811627233043480576/photo/1 10 10 Augie None None None None
515 811386762094317568 NaN NaN 2016-12-21 01:44:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Craig. That's actually a normal sized fence he's stuck on. H*ckin massive pupper. 11/10 someone help him https://t.co/aAUXzoxaBy NaN NaN NaN https://twitter.com/dog_rates/status/811386762094317568/photo/1 11 10 Craig None None pupper None
516 810984652412424192 NaN NaN 2016-12-19 23:06:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sam. She smiles 24/7 &amp; secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx NaN NaN NaN https://www.gofundme.com/sams-smile,https://twitter.com/dog_rates/status/810984652412424192/photo/1 24 7 Sam None None None None
517 810896069567610880 NaN NaN 2016-12-19 17:14:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hunter. He just found out he needs braces. Requesting an orthodogtist stat. 11/10 you're fine Hunter, everything's fine https://t.co/zW1o0W4AYV NaN NaN NaN https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1 11 10 Hunter None None None None
518 810657578271330305 NaN NaN 2016-12-19 01:26:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pavlov. His floatation device has failed him. He's quite pupset about it. 11/10 would rescue https://t.co/MXd0AGDsRJ NaN NaN NaN https://twitter.com/dog_rates/status/810657578271330305/photo/1 11 10 Pavlov None None None None
519 810284430598270976 NaN NaN 2016-12-18 00:43:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Phil. He's a father. A very good father too. 13/10 everybody loves Phil https://t.co/9p6ECXJMMu NaN NaN NaN https://twitter.com/dog_rates/status/810284430598270976/photo/1,https://twitter.com/dog_rates/status/810284430598270976/photo/1 13 10 Phil None None None None
520 810254108431155201 NaN NaN 2016-12-17 22:43:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb NaN NaN NaN https://twitter.com/dog_rates/status/810254108431155201/photo/1 12 10 Gus None None None None
521 809920764300447744 NaN NaN 2016-12-17 00:38:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo NaN NaN NaN https://twitter.com/dog_rates/status/809920764300447744/photo/1 10 10 None None None None None
522 809808892968534016 NaN NaN 2016-12-16 17:14:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR 7.939622e+17 4.196984e+09 2016-11-02 23:45:19 +0000 https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 12 10 Maximus None None None None
523 809448704142938112 NaN NaN 2016-12-15 17:23:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I call this one "A Blep by the Sea" 12/10 https://t.co/EMdnCugNbo NaN NaN NaN https://twitter.com/dog_rates/status/809448704142938112/photo/1 12 10 None None None None None
524 809220051211603969 NaN NaN 2016-12-15 02:14:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p NaN NaN NaN https://twitter.com/dog_rates/status/809220051211603969/photo/1,https://twitter.com/dog_rates/status/809220051211603969/photo/1 12 10 Kyro None None None None
525 809084759137812480 NaN NaN 2016-12-14 17:16:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wallace. You said you brushed your teeth but he checked your toothbrush and it was bone dry. 11/10 not pupset, just disappointed https://t.co/nadm8yWZ4h NaN NaN NaN https://twitter.com/dog_rates/status/809084759137812480/photo/1 11 10 Wallace None None None None
526 808838249661788160 NaN NaN 2016-12-14 00:57:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ito. He'll be your uber driver tonight. Currently adjusting the mirrors. 13/10 incredibly h*ckin responsible https://t.co/Zrrcw29o13 NaN NaN NaN https://twitter.com/dog_rates/status/808838249661788160/photo/1 13 10 Ito None None None None
527 808733504066486276 NaN NaN 2016-12-13 18:01:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a pupper in a onesie. Quite pupset about it. Currently plotting revenge. 12/10 would rescue https://t.co/xQfrbNK3HD NaN NaN NaN https://twitter.com/dog_rates/status/808733504066486276/photo/1 12 10 None None None pupper None
528 808501579447930884 NaN NaN 2016-12-13 02:39:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Koda. He dug a hole and then sat in it because why not. Unamused by the bath that followed. 12/10 https://t.co/SQhyqrr8px NaN NaN NaN https://twitter.com/dog_rates/status/808501579447930884/photo/1,https://twitter.com/dog_rates/status/808501579447930884/photo/1 12 10 Koda None None None None
529 808344865868283904 NaN NaN 2016-12-12 16:16:49 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM NaN NaN NaN https://vine.co/v/5QWd3LZqXxd 11 10 Seamus None None None None
530 808134635716833280 NaN NaN 2016-12-12 02:21:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey 8.011679e+17 4.196984e+09 2016-11-22 20:58:07 +0000 https://twitter.com/dog_rates/status/801167903437357056/photo/1,https://twitter.com/dog_rates/status/801167903437357056/photo/1 13 10 Milo None None None None
531 808106460588765185 NaN NaN 2016-12-12 00:29:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time https://t.co/ANBpEYHaho NaN NaN NaN https://twitter.com/dog_rates/status/808106460588765185/photo/1 12 10 None doggo None pupper None
532 808001312164028416 NaN NaN 2016-12-11 17:31:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cooper. He likes to stick his tongue out at you and then laugh about it. 12/10 quite the jokester https://t.co/O9iGgvfuzl NaN NaN NaN https://twitter.com/dog_rates/status/808001312164028416/photo/1,https://twitter.com/dog_rates/status/808001312164028416/photo/1 12 10 Cooper None None None None
533 807621403335917568 NaN NaN 2016-12-10 16:22:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ollie Vue. He was a 3 legged pupper on a mission to overcome everything. This is very hard to write. 14/10 we will miss you Ollie https://t.co/qTRY2qX9y4 NaN NaN NaN https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1 14 10 Ollie None None pupper None
534 807106840509214720 NaN NaN 2016-12-09 06:17:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d NaN NaN NaN https://twitter.com/dog_rates/status/807106840509214720/video/1 13 10 Stephan None None None None
535 807059379405148160 NaN NaN 2016-12-09 03:08:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX 7.829691e+17 4.196984e+09 2016-10-03 15:42:44 +0000 https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1 12 10 Cali None None None None
536 807010152071229440 NaN NaN 2016-12-08 23:53:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lennon. He's a Boopershnoop Pupperdoop. Quite rare. Exceptionally pettable. 12/10 would definitely boop that shnoop https://t.co/fhgP6vSfhX NaN NaN NaN https://twitter.com/dog_rates/status/807010152071229440/photo/1 12 10 Lennon None None None None
537 806629075125202948 NaN NaN 2016-12-07 22:38:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 NaN NaN NaN https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1 13 10 None None None None None
538 806620845233815552 NaN NaN 2016-12-07 22:06:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.c… 7.815247e+17 4.196984e+09 2016-09-29 16:03:01 +0000 https://twitter.com/dog_rates/status/781524693396357120/photo/1 12 10 None None None None None
539 806576416489959424 NaN NaN 2016-12-07 19:09:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Hooman catch successful. Massive hit by dog. Fumble ensued. Possession to dog. 13/10 https://t.co/QrFkqgHR1G NaN NaN NaN https://twitter.com/deadspin/status/806570933175652352 13 10 None None None None None
540 806542213899489280 NaN NaN 2016-12-07 16:53:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Waffles. He's concerned that the dandruff shampoo he just bought is faulty. 11/10 tragic af https://t.co/BCB87qUU0h NaN NaN NaN https://twitter.com/dog_rates/status/806542213899489280/photo/1 11 10 Waffles None None None None
541 806242860592926720 NaN NaN 2016-12-06 21:04:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu 7.833346e+17 4.196984e+09 2016-10-04 15:55:06 +0000 https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1 12 10 Dave None None None None
542 806219024703037440 NaN NaN 2016-12-06 19:29:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi NaN NaN NaN https://twitter.com/dog_rates/status/806219024703037440/photo/1 11 10 incredibly None None None None
543 805958939288408065 NaN NaN 2016-12-06 02:15:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 7.827226e+17 4.196984e+09 2016-10-02 23:23:04 +0000 https://twitter.com/dog_rates/status/782722598790725632/photo/1,https://twitter.com/dog_rates/status/782722598790725632/photo/1 10 10 Penny None None None None
544 805932879469572096 NaN NaN 2016-12-06 00:32:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Major. He put on a tie for his first real walk. Only a little crooked. Can also drool upwards. H*ckin talented. 12/10 https://t.co/Zcwr8LgoO8 NaN NaN NaN https://twitter.com/dog_rates/status/805932879469572096/photo/1 12 10 Major None None None None
545 805826884734976000 NaN NaN 2016-12-05 17:31:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Duke. He is not a fan of the pupporazzi. 12/10 https://t.co/SgpBVYIL18 NaN NaN NaN https://twitter.com/dog_rates/status/805826884734976000/video/1 12 10 Duke None None None None
546 805823200554876929 NaN NaN 2016-12-05 17:16:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ 7.841832e+17 4.196984e+09 2016-10-07 00:06:50 +0000 https://vine.co/v/5ghHLBMMdlV,https://vine.co/v/5ghHLBMMdlV 12 10 Reginald None None None puppo
547 805520635690676224 NaN NaN 2016-12-04 21:14:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ NaN NaN NaN https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1 13 10 Zeke None None None None
548 805487436403003392 NaN NaN 2016-12-04 19:02:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sansa and Gary. They run along the fence together everyday, so the owners installed a window for them. Both 12/10 h*ckin romantic af https://t.co/1JUduNuaWl NaN NaN NaN https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1 12 10 Sansa None None None None
549 805207613751304193 NaN NaN 2016-12-04 00:30:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shooter. He's doing quite the snowy zoom. 12/10 https://t.co/lHy4Xbyhd9 NaN NaN NaN https://twitter.com/dog_rates/status/805207613751304193/photo/1 12 10 Shooter None None None None
550 804738756058218496 NaN NaN 2016-12-02 17:27:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Django. He accidentally opened the front facing camera. Did him quite the frighten. 12/10 https://t.co/kQVQoOW9NZ NaN NaN NaN https://twitter.com/dog_rates/status/804738756058218496/photo/1 12 10 Django None None None None
551 804475857670639616 NaN NaN 2016-12-02 00:02:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13/10\nhttps://t.co/LEZ8jR5txd NaN NaN NaN https://twitter.com/bvuepd/status/804417859124273152 13 10 None None None None None
552 804413760345620481 NaN NaN 2016-12-01 19:56:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ 7.848260e+17 4.196984e+09 2016-10-08 18:41:19 +0000 https://twitter.com/dog_rates/status/784826020293709826/photo/1,https://twitter.com/dog_rates/status/784826020293709826/photo/1 13 10 Rusty None None None None
553 804026241225523202 NaN NaN 2016-11-30 18:16:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bo. He's going to make me cry. 13/10 please get off the bus for him Carly https://t.co/U7FvBZo6Bq NaN NaN NaN https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1 13 10 Bo None None None None
554 803773340896923648 NaN NaN 2016-11-30 01:31:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Diogi. He fell in the pool as soon as he was brought home. Clumsy puppo. 12/10 would pet until dry https://t.co/ZxeRjMKaWt NaN NaN NaN https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1 12 10 Diogi None None None puppo
555 803692223237865472 NaN NaN 2016-11-29 20:08:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k 6.914169e+17 4.196984e+09 2016-01-25 00:26:41 +0000 https://twitter.com/dog_rates/status/691416866452082688/photo/1,https://twitter.com/dog_rates/status/691416866452082688/photo/1 13 10 None None None None None
556 803638050916102144 NaN NaN 2016-11-29 16:33:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Pupper hath acquire enemy. 13/10 https://t.co/ns9qoElfsX NaN NaN NaN https://twitter.com/dog_rates/status/803638050916102144/video/1 13 10 None None None pupper None
557 803380650405482500 NaN NaN 2016-11-28 23:30:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sonny. He's an in-home movie critic. That is his collection. He's very proud of it. 12/10 https://t.co/yPbCALoy2n NaN NaN NaN https://twitter.com/dog_rates/status/803380650405482500/photo/1 12 10 Sonny None None None None
558 803321560782307329 NaN NaN 2016-11-28 19:35:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb… 7.677549e+17 4.196984e+09 2016-08-22 16:06:54 +0000 https://twitter.com/dog_rates/status/767754930266464257/photo/1 11 10 Philbert None None None None
559 803276597545603072 NaN NaN 2016-11-28 16:37:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Winston. His selfie game is legendary. Will steal your girl with a single snap. 11/10 handsome as h*ck https://t.co/jxQhxoPsgL NaN NaN NaN https://twitter.com/dog_rates/status/803276597545603072/photo/1 11 10 Winston None None None None
560 802952499103731712 NaN NaN 2016-11-27 19:09:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Marley. She's having a ruff day. Pretty pupset. 12/10 would assist https://t.co/yLm7hQ6UXh NaN NaN NaN https://twitter.com/dog_rates/status/802952499103731712/photo/1 12 10 Marley None None None None
561 802624713319034886 NaN NaN 2016-11-26 21:26:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ 7.776842e+17 4.196984e+09 2016-09-19 01:42:24 +0000 https://twitter.com/dog_rates/status/777684233540206592/photo/1,https://twitter.com/dog_rates/status/777684233540206592/photo/1 12 10 None None None None None
562 802600418706604034 NaN NaN 2016-11-26 19:50:26 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Bailey. She has mastered the head tilt. 11/10 rather h*ckin adorable https://t.co/urhl90ZE1O NaN NaN NaN https://vine.co/v/5FwUWjYaW0Y 11 10 Bailey None None None None
563 802572683846291456 NaN NaN 2016-11-26 18:00:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Winnie. She's h*ckin ferocious. Dandelion doesn't even see her coming. 12/10 would pet with caution https://t.co/EFfLCP7oQv NaN NaN NaN https://twitter.com/dog_rates/status/802572683846291456/photo/1 12 10 Winnie None None None None
564 802323869084381190 NaN NaN 2016-11-26 01:31:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Severus. He's here to fix your cable. Looks like he succeeded. Even offered to pupgrade your plan. 13/10 h*ckin helpful https://t.co/aX4brLLpWZ NaN NaN NaN https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1 13 10 Severus None None None None
565 802265048156610565 7.331095e+17 4.196984e+09 2016-11-25 21:37:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze NaN NaN NaN https://twitter.com/dog_rates/status/802265048156610565/photo/1 11 10 None doggo None pupper None
566 802247111496568832 NaN NaN 2016-11-25 20:26:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 7.790561e+17 4.196984e+09 2016-09-22 20:33:42 +0000 https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1 13 10 None None None None None
567 802239329049477120 NaN NaN 2016-11-25 19:55:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Loki. He'll do your taxes for you. Can also make room in your budget for all the things you bought today. 12/10 what a puppo https://t.co/5oWrHCWg87 NaN NaN NaN https://twitter.com/dog_rates/status/802239329049477120/photo/1,https://twitter.com/dog_rates/status/802239329049477120/photo/1 12 10 Loki None None None puppo
568 802185808107208704 NaN NaN 2016-11-25 16:22:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @ChinoChinako: They're good products, Brent\n\nMug holds drinks; hoodie is comfy af. 13/10 \n\nPuppy Aika h*cking agrees. @dog_rates https:/… 8.000650e+17 2.488557e+07 2016-11-19 19:55:41 +0000 https://twitter.com/ChinoChinako/status/800065028116385792/photo/1,https://twitter.com/ChinoChinako/status/800065028116385792/photo/1,https://twitter.com/ChinoChinako/status/800065028116385792/photo/1 13 10 None None None None None
569 801958328846974976 NaN NaN 2016-11-25 01:18:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ronnie. He hopes you're having a great day. Nifty tongue slip. 12/10 would pat head approvingly https://t.co/4fY2bsAm65 NaN NaN NaN https://twitter.com/dog_rates/status/801958328846974976/photo/1 12 10 Ronnie None None None None
570 801854953262350336 8.018543e+17 1.185634e+07 2016-11-24 18:28:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE TO SAY 11/10 NBC NaN NaN NaN NaN 11 10 None None None None None
571 801538201127157760 NaN NaN 2016-11-23 21:29:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wallace. He'll be your chau-fur this evening. 12/10 eyes on the road Wallace https://t.co/p1RD39XjUe NaN NaN NaN https://twitter.com/dog_rates/status/801538201127157760/photo/1 12 10 Wallace None None None None
572 801285448605831168 NaN NaN 2016-11-23 04:45:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> oh h*ck 10/10 https://t.co/bC69RrW559 NaN NaN NaN https://twitter.com/dog_rates/status/801285448605831168/photo/1 10 10 None None None None None
573 801167903437357056 NaN NaN 2016-11-22 20:58:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey NaN NaN NaN https://twitter.com/dog_rates/status/801167903437357056/photo/1 13 10 Milo None None None None
574 801127390143516673 NaN NaN 2016-11-22 18:17:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://… 7.757333e+17 4.196984e+09 2016-09-13 16:30:07 +0000 https://twitter.com/dog_rates/status/775733305207554048/photo/1 11 10 Anakin doggo None None None
575 801115127852503040 NaN NaN 2016-11-22 17:28:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bones. He's being haunted by another doggo of roughly the same size. 12/10 deep breaths pupper everything's fine https://t.co/55Dqe0SJNj NaN NaN NaN https://twitter.com/dog_rates/status/801115127852503040/photo/1,https://twitter.com/dog_rates/status/801115127852503040/photo/1 12 10 Bones doggo None pupper None
576 800859414831898624 8.008580e+17 2.918590e+08 2016-11-22 00:32:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @SkyWilliams doggo simply protecting you from evil that which you cannot see. 11/10 would give extra pets NaN NaN NaN NaN 11 10 None doggo None None None
577 800855607700029440 NaN NaN 2016-11-22 00:17:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @Lin_Manuel: 11/10 would recommend. https://t.co/pnUF69K4xk 8.008540e+17 7.992370e+07 2016-11-22 00:10:52 +0000 https://twitter.com/littlewiewel/status/800852955880628224,https://twitter.com/littlewiewel/status/800852955880628224 11 10 None None None None None
578 800751577355128832 NaN NaN 2016-11-21 17:23:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Mauve and Murphy. They're rather h*ckin filthy. Preferred nap over bath. Both 12/10 https://t.co/4UwCTW3lXG NaN NaN NaN https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1 12 10 Mauve None None None None
579 800513324630806528 NaN NaN 2016-11-21 01:37:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chef. Chef loves everyone and wants everyone to love each other. 11/10 https://t.co/ILHGs0e6Dm NaN NaN NaN https://twitter.com/dog_rates/status/800513324630806528/photo/1 11 10 Chef None None None None
580 800459316964663297 NaN NaN 2016-11-20 22:02:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely https://t.co/61sX7pW5Ca NaN NaN NaN https://twitter.com/dog_rates/status/800459316964663297/photo/1 12 10 None None None pupper None
581 800443802682937345 NaN NaN 2016-11-20 21:00:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG 7.761133e+17 4.196984e+09 2016-09-14 17:40:06 +0000 https://twitter.com/dog_rates/status/776113305656188928/photo/1,https://twitter.com/dog_rates/status/776113305656188928/photo/1 11 10 Sampson None None pupper None
582 800388270626521089 NaN NaN 2016-11-20 17:20:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Doc. He takes time out of every day to worship our plant overlords. 12/10 quite the floofer https://t.co/azMneS6Ly5 NaN NaN NaN https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1 12 10 Doc None floofer None None
583 800188575492947969 NaN NaN 2016-11-20 04:06:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://… 6.816941e+17 4.196984e+09 2015-12-29 04:31:49 +0000 https://twitter.com/dog_rates/status/681694085539872773/photo/1 11 10 Bo None None pupper None
584 800141422401830912 NaN NaN 2016-11-20 00:59:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg NaN NaN NaN https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1 13 10 Peaches None None None None
585 800018252395122689 NaN NaN 2016-11-19 16:49:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a doggo doin a struggle. 11/10 much determined https://t.co/gQqRBfkX4I NaN NaN NaN https://twitter.com/dog_rates/status/800018252395122689/video/1 11 10 None doggo None None None
586 799774291445383169 NaN NaN 2016-11-19 00:40:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT 7.750851e+17 4.196984e+09 2016-09-11 21:34:30 +0000 https://twitter.com/dog_rates/status/775085132600442880/photo/1,https://twitter.com/dog_rates/status/775085132600442880/photo/1 13 10 Tucker None None None None
587 799757965289017345 NaN NaN 2016-11-18 23:35:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sobe. She's a h*ckin happy doggo. Only one leg tho. Must have good balance. 13/10 would smile back https://t.co/OiH8PaOxB1 NaN NaN NaN https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1 13 10 Sobe doggo None None None
588 799422933579902976 NaN NaN 2016-11-18 01:24:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Longfellow (prolly sophisticated). He's a North Appalachian Oatzenjammer. Concerned about wrinkled feets. 12/10 would hug softly https://t.co/bpLuQuxzHZ NaN NaN NaN https://twitter.com/dog_rates/status/799422933579902976/photo/1 12 10 Longfellow None None None None
589 799308762079035393 NaN NaN 2016-11-17 17:50:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpf… 7.743144e+17 4.196984e+09 2016-09-09 18:31:54 +0000 https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1 14 10 None None None None None
590 799297110730567681 NaN NaN 2016-11-17 17:04:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jeffrey. He's quite the jokester. Takes it too far sometimes. Still 11/10 would pet https://t.co/YDtZcAiMAf NaN NaN NaN https://twitter.com/dog_rates/status/799297110730567681/photo/1,https://twitter.com/dog_rates/status/799297110730567681/photo/1 11 10 Jeffrey None None None None
591 799063482566066176 NaN NaN 2016-11-17 01:35:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mister. He only wears the most fashionable af headwear. 11/10 h*ckin stylish https://t.co/BXJFKOVnJm NaN NaN NaN https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1 11 10 Mister None None None None
592 798933969379225600 NaN NaN 2016-11-16 17:01:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Iroh. He's in a predicament. 12/10 someone help him https://t.co/KJAKO2kXsL NaN NaN NaN https://twitter.com/dog_rates/status/798933969379225600/photo/1,https://twitter.com/dog_rates/status/798933969379225600/photo/1 12 10 Iroh None None None None
593 798925684722855936 NaN NaN 2016-11-16 16:28:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shadow. He's a firm believer that they're all good dogs. H*ckin passionate about it too. 11/10 I stand with Shadow https://t.co/8yvpacwBcu NaN NaN NaN https://twitter.com/dog_rates/status/798925684722855936/photo/1 11 10 Shadow None None None None
594 798705661114773508 NaN NaN 2016-11-16 01:54:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://… 7.406770e+17 4.196984e+09 2016-06-08 22:48:46 +0000 https://twitter.com/dog_rates/status/740676976021798912/photo/1 11 10 Baloo None None pupper None
595 798701998996647937 NaN NaN 2016-11-16 01:39:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t… 7.186315e+17 4.196984e+09 2016-04-09 02:47:55 +0000 https://twitter.com/dog_rates/status/718631497683582976/photo/1 10 10 None None None None None
596 798697898615730177 NaN NaN 2016-11-16 01:23:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn 7.128090e+17 4.196984e+09 2016-03-24 01:11:29 +0000 https://twitter.com/dog_rates/status/712809025985978368/photo/1,https://twitter.com/dog_rates/status/712809025985978368/photo/1 10 10 Stubert None None None None
597 798694562394996736 NaN NaN 2016-11-16 01:09:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL 7.012147e+17 4.196984e+09 2016-02-21 01:19:47 +0000 https://twitter.com/dog_rates/status/701214700881756160/photo/1,https://twitter.com/dog_rates/status/701214700881756160/photo/1 12 10 None None None None None
598 798686750113755136 NaN NaN 2016-11-16 00:38:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/Y… 6.833919e+17 4.196984e+09 2016-01-02 20:58:09 +0000 https://twitter.com/dog_rates/status/683391852557561860/photo/1 11 10 Jack None None None None
599 798682547630837760 NaN NaN 2016-11-16 00:22:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.… 6.769365e+17 4.196984e+09 2015-12-16 01:27:03 +0000 https://twitter.com/dog_rates/status/676936541936185344/photo/1 8 10 None None None pupper None
600 798673117451325440 NaN NaN 2016-11-15 23:44:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH 6.755011e+17 4.196984e+09 2015-12-12 02:23:01 +0000 https://twitter.com/dog_rates/status/675501075957489664/photo/1,https://twitter.com/dog_rates/status/675501075957489664/photo/1 13 10 None None None None None
601 798665375516884993 NaN NaN 2016-11-15 23:13:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH 6.718968e+17 4.196984e+09 2015-12-02 03:40:57 +0000 https://twitter.com/dog_rates/status/671896809300709376/photo/1,https://twitter.com/dog_rates/status/671896809300709376/photo/1 10 10 Lola None None None None
602 798644042770751489 NaN NaN 2016-11-15 21:49:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq 6.704450e+17 4.196984e+09 2015-11-28 03:31:48 +0000 https://twitter.com/dog_rates/status/670444955656130560/photo/1,https://twitter.com/dog_rates/status/670444955656130560/photo/1 10 10 Paull None None None None
603 798628517273620480 NaN NaN 2016-11-15 20:47:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 6.675094e+17 4.196984e+09 2015-11-20 01:06:48 +0000 https://twitter.com/dog_rates/status/667509364010450944/photo/1,https://twitter.com/dog_rates/status/667509364010450944/photo/1 12 10 None None None None None
604 798585098161549313 NaN NaN 2016-11-15 17:54:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.… 6.671828e+17 4.196984e+09 2015-11-19 03:29:07 +0000 https://twitter.com/dog_rates/status/667182792070062081/photo/1 10 10 Timison None None None None
605 798576900688019456 NaN NaN 2016-11-15 17:22:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/… 6.661041e+17 4.196984e+09 2015-11-16 04:02:55 +0000 https://twitter.com/dog_rates/status/666104133288665088/photo/1 1 10 None None None None None
606 798340744599797760 NaN NaN 2016-11-15 01:44:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm 7.717705e+17 4.196984e+09 2016-09-02 18:03:10 +0000 https://twitter.com/dog_rates/status/771770456517009408/photo/1,https://twitter.com/dog_rates/status/771770456517009408/photo/1 11 10 Davey None None None None
607 798209839306514432 NaN NaN 2016-11-14 17:03:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cooper. His bow tie was too heavy for the front so he moved it to the side. Balanced af now. 13/10 https://t.co/jG1PAFkB81 NaN NaN NaN https://twitter.com/dog_rates/status/798209839306514432/photo/1 13 10 Cooper None None None None
608 797971864723324932 NaN NaN 2016-11-14 01:18:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af https://t.co/GRWPgNKt2z NaN NaN NaN https://twitter.com/dog_rates/status/797971864723324932/photo/1,https://twitter.com/dog_rates/status/797971864723324932/photo/1 12 10 None None None pupper None
609 797545162159308800 NaN NaN 2016-11-12 21:02:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cassie. She steals things. Guilt increases slightly each time. 12/10 would forgive almost immediately https://t.co/Ia19irLwyB NaN NaN NaN https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1 12 10 Cassie None None None None
610 797236660651966464 NaN NaN 2016-11-12 00:36:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pancake. She loves Batman and winks like a h*ckin champ. 12/10 real crowd pleaser https://t.co/6kqsAjJNhi NaN NaN NaN https://twitter.com/dog_rates/status/797236660651966464/photo/1,https://twitter.com/dog_rates/status/797236660651966464/photo/1 12 10 Pancake None None None None
611 797165961484890113 7.971238e+17 2.916630e+07 2016-11-11 19:55:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @JODYHiGHROLLER it may be an 11/10 but what do I know 😉 NaN NaN NaN NaN 11 10 None None None None None
612 796904159865868288 NaN NaN 2016-11-11 02:35:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https:/… 6.873173e+17 4.196984e+09 2016-01-13 16:56:30 +0000 https://twitter.com/dog_rates/status/687317306314240000/photo/1,https://twitter.com/dog_rates/status/687317306314240000/photo/1 11 10 Tyrone None None None None
613 796865951799083009 NaN NaN 2016-11-11 00:03:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tyr. He's just checking on you. Nifty af tongue slip. 12/10 would absolutely pet https://t.co/Jgnuiyvq06 NaN NaN NaN https://twitter.com/dog_rates/status/796865951799083009/photo/1 12 10 Tyr None None None None
614 796759840936919040 NaN NaN 2016-11-10 17:02:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Romeo. He was just told that it's too cold for the pool. H*ckin nonsense. 11/10 would help fill up https://t.co/6hx7ur6sNI NaN NaN NaN https://twitter.com/dog_rates/status/796759840936919040/photo/1,https://twitter.com/dog_rates/status/796759840936919040/photo/1 11 10 Romeo None None None None
615 796563435802726400 NaN NaN 2016-11-10 04:01:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5d… 7.809316e+17 4.196984e+09 2016-09-28 00:46:20 +0000 https://twitter.com/dog_rates/status/780931614150983680/photo/1 13 10 None None None None puppo
616 796484825502875648 NaN NaN 2016-11-09 22:49:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere https://t.co/bvkkqOjNDV NaN NaN NaN https://twitter.com/dog_rates/status/796484825502875648/photo/1 12 10 None doggo None None None
617 796387464403357696 NaN NaN 2016-11-09 16:22:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Snicku. He's having trouble reading because he's a dog. Glasses only helped a little. Nap preferred. 12/10 would snug well https://t.co/cVLUasbKA5 NaN NaN NaN https://twitter.com/dog_rates/status/796387464403357696/photo/1,https://twitter.com/dog_rates/status/796387464403357696/photo/1 12 10 Snicku None None None None
618 796177847564038144 NaN NaN 2016-11-09 02:29:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt 7.961497e+17 4.196984e+09 2016-11-09 00:37:46 +0000 https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1 11 10 Ruby None None None None
619 796149749086875649 NaN NaN 2016-11-09 00:37:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt NaN NaN NaN https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1 11 10 Ruby None None None None
620 796125600683540480 NaN NaN 2016-11-08 23:01:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 NaN NaN NaN https://twitter.com/king5seattle/status/796123679771897856 13 10 None None None None None
621 796116448414461957 NaN NaN 2016-11-08 22:25:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 https://t.co/7i0bDMbrVN NaN NaN NaN https://twitter.com/dog_rates/status/796116448414461957/photo/1 11 10 None None None None None
622 796080075804475393 NaN NaN 2016-11-08 20:00:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Yogi. He's 98% floof. Snuggable af. 12/10 https://t.co/opoXKxmfFm NaN NaN NaN https://twitter.com/dog_rates/status/796080075804475393/photo/1 12 10 Yogi None None None None
623 796031486298386433 NaN NaN 2016-11-08 16:47:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Daisy. She's here to make your day better. 13/10 mission h*ckin successful https://t.co/PbgvuD0qIL NaN NaN NaN https://twitter.com/dog_rates/status/796031486298386433/photo/1 13 10 Daisy None None None None
624 795464331001561088 NaN NaN 2016-11-07 03:14:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Elder doggo does a splash. Both 13/10 incredible stuff https://t.co/gBUDjdEcqz NaN NaN NaN https://twitter.com/dog_rates/status/795464331001561088/video/1 13 10 None doggo None None None
625 795400264262053889 NaN NaN 2016-11-06 22:59:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brody. He's trying to make the same face as the football. 12/10 https://t.co/2H4MfOGlpQ NaN NaN NaN https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1 12 10 Brody None None None None
626 795076730285391872 NaN NaN 2016-11-06 01:33:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E NaN NaN NaN https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1 11 10 Bailey None None None None
627 794983741416415232 NaN NaN 2016-11-05 19:24:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq 7.895309e+17 4.196984e+09 2016-10-21 18:16:44 +0000 https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1 12 10 Rizzy None None None None
628 794926597468000259 NaN NaN 2016-11-05 15:37:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mack. He's rather h*ckin sleepy. Exceptional ears. 12/10 would boop https://t.co/XRPvTPF0VH NaN NaN NaN https://twitter.com/dog_rates/status/794926597468000259/photo/1 12 10 Mack None None None None
629 794355576146903043 NaN NaN 2016-11-04 01:48:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq 7.887659e+17 4.196984e+09 2016-10-19 15:37:03 +0000 https://twitter.com/dog_rates/status/788765914992902144/photo/1,https://twitter.com/dog_rates/status/788765914992902144/photo/1 12 10 Butter None None None None
630 794332329137291264 NaN NaN 2016-11-04 00:15:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Nimbus (like the cloud). He just bought this fancy af duck raincoat. Only protects one ear tho. 12/10 so h*ckin floofy https://t.co/SIQbb8c3AU NaN NaN NaN https://twitter.com/dog_rates/status/794332329137291264/photo/1 12 10 Nimbus None None None None
631 794205286408003585 NaN NaN 2016-11-03 15:51:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Laika. She was a space pupper. The first space pupper actually. Orbited earth like a h*ckin boss. 14/10 hero af https://t.co/trSjgY3h4g NaN NaN NaN https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1 14 10 Laika None None pupper None
632 793962221541933056 NaN NaN 2016-11-02 23:45:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR NaN NaN NaN https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 12 10 Maximus None None None None
633 793845145112371200 NaN NaN 2016-11-02 16:00:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Clark. He was just caught wearing pants. 13/10 game-changing af https://t.co/2Xo19aPrG5 NaN NaN NaN https://twitter.com/dog_rates/status/793845145112371200/photo/1 13 10 Clark None None None None
634 793614319594401792 NaN NaN 2016-11-02 00:42:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh 7.916723e+17 4.196984e+09 2016-10-27 16:06:04 +0000 https://twitter.com/dog_rates/status/791672322847637504/photo/1,https://twitter.com/dog_rates/status/791672322847637504/photo/1 13 10 None None None None None
635 793601777308463104 NaN NaN 2016-11-01 23:53:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dobby. I can't stop looking at her feet. 12/10 would absolutely snug https://t.co/LhzPWv6rTv NaN NaN NaN https://twitter.com/dog_rates/status/793601777308463104/photo/1 12 10 Dobby None None None None
636 793500921481273345 NaN NaN 2016-11-01 17:12:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Fiona. She's an extremely mediocre copilot. Very distracting. Wink makes up for all the missed turns. 12/10 https://t.co/aF5MmpvPqN NaN NaN NaN https://twitter.com/dog_rates/status/793500921481273345/photo/1,https://twitter.com/dog_rates/status/793500921481273345/photo/1 12 10 Fiona None None None None
637 793286476301799424 NaN NaN 2016-11-01 03:00:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 NaN NaN NaN https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1 13 10 Moreton None None None None
638 793271401113350145 NaN NaN 2016-11-01 02:00:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Dave. It's his favorite day of the year. He gets to fulfill his dream of being a dinosaur. 12/10 inspirational af https://t.co/MgQSdfZGPN NaN NaN NaN https://twitter.com/dog_rates/status/793271401113350145/photo/1 12 10 Dave None None None None
639 793256262322548741 NaN NaN 2016-11-01 01:00:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked https://t.co/BNy9IIJMb0 NaN NaN NaN https://twitter.com/dog_rates/status/793256262322548741/photo/1 12 10 None None None None None
640 793241302385262592 NaN NaN 2016-11-01 00:00:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tucker. He's out here bustin h*ckin ghosts. 13/10 dedicated af https://t.co/Ap477GhwXt NaN NaN NaN https://twitter.com/dog_rates/status/793241302385262592/photo/1 13 10 Tucker None None None None
641 793226087023144960 NaN NaN 2016-10-31 23:00:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Juno. She spooked me up real good, but only to get my attention. Above average handwriting for a dog I think. 11/10 https://t.co/hFxxBCWlwj NaN NaN NaN https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1 11 10 Juno None None None None
642 793210959003287553 NaN NaN 2016-10-31 22:00:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Maude. She's the h*ckin happiest wasp you've ever seen. 10/10 would pet with caution https://t.co/etL8FHBrh8 NaN NaN NaN https://twitter.com/dog_rates/status/793210959003287553/photo/1 10 10 Maude None None None None
643 793195938047070209 NaN NaN 2016-10-31 21:00:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Lily. She's pupset that her costume doesn't fit as well as last year. 12/10 poor puppo https://t.co/YSi6K1firY NaN NaN NaN https://twitter.com/dog_rates/status/793195938047070209/photo/1,https://twitter.com/dog_rates/status/793195938047070209/photo/1 12 10 Lily None None None puppo
644 793180763617361921 NaN NaN 2016-10-31 20:00:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Newt. He's a strawberry. 11/10 https://t.co/2VhmlwxA1Q NaN NaN NaN https://twitter.com/dog_rates/status/793180763617361921/photo/1 11 10 Newt None None None None
645 793165685325201412 NaN NaN 2016-10-31 19:00:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Benji. He's Air Bud. It's a low effort costume but he pulls it off rather h*ckin well. 12/10 would happily get dunked on https://t.co/IbzT7DJvBo NaN NaN NaN https://twitter.com/dog_rates/status/793165685325201412/photo/1 12 10 Benji None None None None
646 793150605191548928 NaN NaN 2016-10-31 18:00:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Nida. She's a free elf. Waited so long for this day. 11/10 https://t.co/3lE8Izgmkf NaN NaN NaN https://twitter.com/dog_rates/status/793150605191548928/photo/1 11 10 Nida None None None None
647 793135492858580992 NaN NaN 2016-10-31 17:00:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Your favorite squad is looking extra h*ckin spooky today. 13/10 for all https://t.co/PrgvOyPtDT NaN NaN NaN https://twitter.com/dog_rates/status/793135492858580992/photo/1,https://twitter.com/dog_rates/status/793135492858580992/photo/1 13 10 None None None None None
648 793120401413079041 NaN NaN 2016-10-31 16:00:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Robin. She's desperately trying to do me a frighten, but her tongue drastically decreases her spook value. Still 11/10 great effort https://t.co/sxMrsOZ8zb NaN NaN NaN https://twitter.com/dog_rates/status/793120401413079041/photo/1 11 10 Robin None None None None
649 792913359805018113 NaN NaN 2016-10-31 02:17:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is a perfect example of someone who has their priorities in order. 13/10 for both owner and Forrest https://t.co/LRyMrU7Wfq NaN NaN NaN https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1 13 10 a None None None None
650 792883833364439040 NaN NaN 2016-10-31 00:20:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bailey. She's rather h*ckin hype for Halloween tomorrow. Carved those pupkins herself. 12/10 https://t.co/v17mFm0Ftz NaN NaN NaN https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1 12 10 Bailey None None None None
651 792773781206999040 NaN NaN 2016-10-30 17:02:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Monster. Not an actual monster tho. He's showing you his tongue. Very impressive Monster. 12/10 would snug https://t.co/RhaPExuxJL NaN NaN NaN https://twitter.com/dog_rates/status/792773781206999040/photo/1 12 10 Monster None None None None
652 792394556390137856 NaN NaN 2016-10-29 15:55:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet BeBe. She rocks the messy bun of your dreams. H*ckin flawless. 12/10 would watch her tutorial https://t.co/of0pFNBIl8 NaN NaN NaN https://twitter.com/dog_rates/status/792394556390137856/photo/1,https://twitter.com/dog_rates/status/792394556390137856/photo/1 12 10 BeBe None None None None
653 792050063153438720 NaN NaN 2016-10-28 17:07:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Remus. He's a mop that came to life. Can't see anything. Constantly trips over himself. Still a very good dog. 11/10 https://t.co/S3f1SYylzu NaN NaN NaN https://twitter.com/dog_rates/status/792050063153438720/photo/1,https://twitter.com/dog_rates/status/792050063153438720/photo/1 11 10 Remus None None None None
654 791821351946420224 NaN NaN 2016-10-28 01:58:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p 6.848310e+17 4.196984e+09 2016-01-06 20:16:44 +0000 https://vine.co/v/eEZXZI1rqxX,https://vine.co/v/eEZXZI1rqxX 13 10 None None None pupper None
655 791784077045166082 NaN NaN 2016-10-27 23:30:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE 6.820881e+17 4.196984e+09 2015-12-30 06:37:25 +0000 https://vine.co/v/iqMjlxULzbn,https://vine.co/v/iqMjlxULzbn 12 10 None None None None None
656 791780927877898241 NaN NaN 2016-10-27 23:17:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u 7.467577e+17 4.196984e+09 2016-06-25 17:31:25 +0000 https://vine.co/v/5BYq6hmrEI3,https://vine.co/v/5BYq6hmrEI3 11 10 Maddie None None None None
657 791774931465953280 NaN NaN 2016-10-27 22:53:48 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Vine will be deeply missed. This was by far my favorite one. 14/10 https://t.co/roqIxCvEB3 NaN NaN NaN https://vine.co/v/ea0OwvPTx9l 14 10 None None None None None
658 791672322847637504 NaN NaN 2016-10-27 16:06:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh NaN NaN NaN https://twitter.com/dog_rates/status/791672322847637504/photo/1 13 10 None None None None None
659 791406955684368384 NaN NaN 2016-10-26 22:31:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets https://t.co/Zcw9Sccctc NaN NaN NaN https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1 12 10 Levi None None None None
660 791312159183634433 NaN NaN 2016-10-26 16:14:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mabel. She's super h*ckin smol. Portable af. Comes with the smol shoe. 12/10 would keep in frocket https://t.co/GGJvxYt3xK NaN NaN NaN https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1 12 10 Mabel None None None None
661 791026214425268224 NaN NaN 2016-10-25 21:18:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo 7.638376e+17 4.196984e+09 2016-08-11 20:40:41 +0000 https://twitter.com/dog_rates/status/763837565564780549/photo/1,https://twitter.com/dog_rates/status/763837565564780549/photo/1 11 10 Alfie None None None None
662 790987426131050500 NaN NaN 2016-10-25 18:44:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Misty. She has a cowboy hat on her nose. 12/10 https://t.co/Eno0mypHIr NaN NaN NaN https://twitter.com/dog_rates/status/790987426131050500/photo/1 12 10 Misty None None None None
663 790946055508652032 NaN NaN 2016-10-25 16:00:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI NaN NaN NaN https://twitter.com/dog_rates/status/790946055508652032/photo/1 12 10 Betty None None None puppo
664 790723298204217344 NaN NaN 2016-10-25 01:14:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v 7.899865e+17 4.196984e+09 2016-10-23 00:27:05 +0000 https://twitter.com/dog_rates/status/789986466051088384/photo/1,https://twitter.com/dog_rates/status/789986466051088384/photo/1 12 10 Happy None None None None
665 790698755171364864 NaN NaN 2016-10-24 23:37:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mosby. He appears to be rather h*ckin snuggable af. 12/10 keep it up Mosby https://t.co/IiiBq460I7 NaN NaN NaN https://twitter.com/dog_rates/status/790698755171364864/photo/1 12 10 Mosby None None None None
666 790581949425475584 NaN NaN 2016-10-24 15:53:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Duke. He sneaks into the fridge sometimes. It's his safe place. 11/10 would give little jacket if necessary https://t.co/Fd5WFDTMH4 NaN NaN NaN https://twitter.com/dog_rates/status/790581949425475584/photo/1,https://twitter.com/dog_rates/status/790581949425475584/photo/1 11 10 Duke None None None None
667 790337589677002753 NaN NaN 2016-10-23 23:42:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Maggie. She can hear your cells divide. 12/10 can also probably fly https://t.co/ovE2hqXryV NaN NaN NaN https://twitter.com/dog_rates/status/790337589677002753/photo/1 12 10 Maggie None None None None
668 790277117346975746 NaN NaN 2016-10-23 19:42:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 NaN NaN NaN https://twitter.com/dog_rates/status/790277117346975746/photo/1 11 10 Bruce None None None None
669 790227638568808452 NaN NaN 2016-10-23 16:25:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3… 7.626999e+17 4.196984e+09 2016-08-08 17:19:51 +0000 https://twitter.com/dog_rates/status/762699858130116608/photo/1 11 10 Leela None None None None
670 789986466051088384 NaN NaN 2016-10-23 00:27:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v NaN NaN NaN https://twitter.com/dog_rates/status/789986466051088384/photo/1 12 10 Happy None None None None
671 789960241177853952 NaN NaN 2016-10-22 22:42:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.… 7.624645e+17 4.196984e+09 2016-08-08 01:44:46 +0000 https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1 12 10 Buddy None None None None
672 789903600034189313 NaN NaN 2016-10-22 18:57:48 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Ralphy. His dreams were just shattered. Poor pupper. 13/10 it'll be ok Ralphy https://t.co/P0kSN6rT6H NaN NaN NaN https://vine.co/v/5wPT1aBxPQZ 13 10 Ralphy None None pupper None
673 789628658055020548 NaN NaN 2016-10-22 00:45:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Eli. He can fly. 13/10 magical af https://t.co/huPSJJ7FDI NaN NaN NaN https://twitter.com/dog_rates/status/789628658055020548/photo/1 13 10 Eli None None None None
674 789599242079838210 NaN NaN 2016-10-21 22:48:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brownie. She's wearing a Halloween themed onesie. 12/10 festive af https://t.co/0R4meWXFOx NaN NaN NaN https://twitter.com/dog_rates/status/789599242079838210/photo/1,https://twitter.com/dog_rates/status/789599242079838210/photo/1 12 10 Brownie None None None None
675 789530877013393408 NaN NaN 2016-10-21 18:16:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq NaN NaN NaN https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1 12 10 Rizzy None None None None
676 789314372632018944 NaN NaN 2016-10-21 03:56:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOOD DOGGI ALL THE TIME MISTAKES HAPPEN 13/10\nhttps://t.co/G2ms0A5jWM NaN NaN NaN https://twitter.com/sebscat/status/788818328538099712 13 10 None None None None None
677 789280767834746880 NaN NaN 2016-10-21 01:42:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t… 7.507196e+17 4.196984e+09 2016-07-06 15:54:42 +0000 https://twitter.com/dog_rates/status/750719632563142656/photo/1 12 10 Meyer None None None None
678 789268448748703744 NaN NaN 2016-10-21 00:53:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stella. She's happier than I will ever be. 10/10 would trade lives with https://t.co/JSs2bfDtTS NaN NaN NaN https://twitter.com/dog_rates/status/789268448748703744/photo/1 10 10 Stella None None None None
679 789137962068021249 NaN NaN 2016-10-20 16:15:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bo. He's a West Congolese Bugaboop Snuggle. Rather exotic. Master of the head tilt. 12/10 would pay to pet https://t.co/2jwxxtNzoN NaN NaN NaN https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1 12 10 Bo None None None None
680 788908386943430656 NaN NaN 2016-10-20 01:03:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lucy. She destroyed not one, but two remotes trying to turn off the debate. 11/10 relatable af https://t.co/3BXh073tDm NaN NaN NaN https://twitter.com/dog_rates/status/788908386943430656/photo/1 11 10 Lucy None None None None
681 788765914992902144 NaN NaN 2016-10-19 15:37:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq NaN NaN NaN https://twitter.com/dog_rates/status/788765914992902144/photo/1 12 10 Butter None None None None
682 788552643979468800 NaN NaN 2016-10-19 01:29:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX 7.363926e+17 4.196984e+09 2016-05-28 03:04:00 +0000 https://vine.co/v/iEggaEOiLO3,https://vine.co/v/iEggaEOiLO3 13 10 mad None None pupper None
683 788412144018661376 NaN NaN 2016-10-18 16:11:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dexter. He breaks hearts for a living. 11/10 h*ckin handsome af https://t.co/4DhSsC1W7S NaN NaN NaN https://twitter.com/dog_rates/status/788412144018661376/photo/1,https://twitter.com/dog_rates/status/788412144018661376/photo/1 11 10 Dexter None None None None
684 788178268662984705 NaN NaN 2016-10-18 00:41:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af https://t.co/s7MgFWDySc NaN NaN NaN https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1 13 10 None None None None None
685 788150585577050112 NaN NaN 2016-10-17 22:51:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Leo. He's a golden chow. Rather h*ckin rare. 13/10 would give extra pats https://t.co/xosHjFzVXc NaN NaN NaN https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1 13 10 Leo None None None None
686 788070120937619456 NaN NaN 2016-10-17 17:32:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK 7.610045e+17 4.196984e+09 2016-08-04 01:03:17 +0000 https://twitter.com/dog_rates/status/761004547850530816/photo/1,https://twitter.com/dog_rates/status/761004547850530816/photo/1 11 10 Bo None None None None
687 788039637453406209 NaN NaN 2016-10-17 15:31:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Did... did they pick out that license plate? 12/10 for both https://t.co/lRmUUOxgbQ NaN NaN NaN https://twitter.com/dog_rates/status/788039637453406209/photo/1,https://twitter.com/dog_rates/status/788039637453406209/photo/1 12 10 None None None None None
688 787810552592695296 NaN NaN 2016-10-17 00:20:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Frank. He wears sunglasses and walks himself. 11/10 I'll never be this cool or independent https://t.co/pNNjBtHWPc NaN NaN NaN https://twitter.com/dog_rates/status/787810552592695296/photo/1,https://twitter.com/dog_rates/status/787810552592695296/photo/1 11 10 Frank None None None None
689 787717603741622272 NaN NaN 2016-10-16 18:11:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tonks. She is a service puppo. Can hear a caterpillar hiccup from 7 miles away. 13/10 would follow anywhere https://t.co/i622ZbWkUp NaN NaN NaN https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1 13 10 Tonks None None None puppo
690 787397959788929025 NaN NaN 2016-10-15 21:01:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Moose. He's rather h*ckin dangerous (you can tell by the collar). 11/10 would still attempt to snug https://t.co/lHVHGdDzb3 NaN NaN NaN https://twitter.com/dog_rates/status/787397959788929025/photo/1 11 10 Moose None None None None
691 787322443945877504 NaN NaN 2016-10-15 16:01:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lincoln. He forgot to use his blinker when he changed lanes just now. Guilty as h*ck. Still 10/10 https://t.co/lsrR83SiVp NaN NaN NaN https://twitter.com/dog_rates/status/787322443945877504/photo/1 10 10 Lincoln None None None None
692 787111942498508800 NaN NaN 2016-10-15 02:04:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc 7.529324e+17 4.196984e+09 2016-07-12 18:27:35 +0000 https://vine.co/v/OEppMFbejFz,https://vine.co/v/OEppMFbejFz 12 10 Carl None None None None
693 786963064373534720 NaN NaN 2016-10-14 16:13:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj NaN NaN NaN https://twitter.com/dog_rates/status/786963064373534720/photo/1 12 10 Rory None None None None
694 786729988674449408 NaN NaN 2016-10-14 00:47:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.… 7.594477e+17 4.196984e+09 2016-07-30 17:56:51 +0000 https://twitter.com/dog_rates/status/759447681597108224/photo/1 11 10 Oakley None None None None
695 786709082849828864 NaN NaN 2016-10-13 23:23:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS NaN NaN NaN https://twitter.com/dog_rates/status/786709082849828864/photo/1 75 10 Logan None None None None
696 786664955043049472 NaN NaN 2016-10-13 20:28:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Honestly Kathleen I just want more Ken Bone" 12/10 https://t.co/HmlEvAMP4r NaN NaN NaN https://twitter.com/dog_rates/status/786664955043049472/photo/1 12 10 None None None None None
697 786595970293370880 NaN NaN 2016-10-13 15:54:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dale. He's a real spookster. Did me quite the frighten. 11/10 not too spooky to pet tho https://t.co/L8BWDD4oBX NaN NaN NaN https://twitter.com/dog_rates/status/786595970293370880/photo/1 11 10 Dale None None None None
698 786363235746385920 NaN NaN 2016-10-13 00:29:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rizzo. He has many talents. A true renaissance doggo. 13/10 entertaining af https://t.co/TVXpEJB7Wn NaN NaN NaN https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1 13 10 Rizzo doggo None None None
699 786286427768250368 NaN NaN 2016-10-12 19:24:27 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Arnie. He's afraid of his own bark. 12/10 would comfort https://t.co/ObT2tSxXit NaN NaN NaN https://vine.co/v/5XH0WqHwiFp 12 10 Arnie None None None None
700 786233965241827333 NaN NaN 2016-10-12 15:55:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh NaN NaN NaN https://twitter.com/dog_rates/status/786233965241827333/photo/1 11 10 Mattie None None None None
701 786051337297522688 7.727430e+17 7.305050e+17 2016-10-12 03:50:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 13/10 for breakdancing puppo @shibbnbot NaN NaN NaN NaN 13 10 None None None None puppo
702 786036967502913536 NaN NaN 2016-10-12 02:53:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD 7.798343e+17 4.196984e+09 2016-09-25 00:06:08 +0000 https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1 11 10 Scout None None None None
703 785927819176054784 NaN NaN 2016-10-11 19:39:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lucy. She's strives to be the best potato she can be. 12/10 would boop https://t.co/lntsj7Fc4Y NaN NaN NaN https://twitter.com/dog_rates/status/785927819176054784/photo/1 12 10 Lucy None None None None
704 785872687017132033 NaN NaN 2016-10-11 16:00:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Rusty. He appears to be rather h*ckin fluffy. Also downright adorable af. 12/10 would rub my face against his https://t.co/1j9kLGb4wV NaN NaN NaN https://twitter.com/dog_rates/status/785872687017132033/video/1 12 10 Rusty None None None None
705 785639753186217984 NaN NaN 2016-10-11 00:34:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pinot. He's a sophisticated doggo. You can tell by the hat. Also pointier than your average pupper. Still 10/10 would pet cautiously https://t.co/f2wmLZTPHd NaN NaN NaN https://twitter.com/dog_rates/status/785639753186217984/photo/1,https://twitter.com/dog_rates/status/785639753186217984/photo/1 10 10 Pinot doggo None pupper None
706 785533386513321988 NaN NaN 2016-10-10 17:32:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dallas. Her tongue is ridiculous. 11/10 h*ckin proud af https://t.co/h4jhlH4EyG NaN NaN NaN https://twitter.com/dog_rates/status/785533386513321988/photo/1,https://twitter.com/dog_rates/status/785533386513321988/photo/1 11 10 Dallas None None None None
707 785515384317313025 NaN NaN 2016-10-10 16:20:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Today, 10/10, should be National Dog Rates Day NaN NaN NaN NaN 10 10 None None None None None
708 785264754247995392 NaN NaN 2016-10-09 23:44:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Doc. He requested to be carried around like that. 12/10 anything for Doc https://t.co/mWYACm4qnx NaN NaN NaN https://twitter.com/dog_rates/status/785264754247995392/photo/1 12 10 Doc None None None None
709 785170936622350336 NaN NaN 2016-10-09 17:31:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hero. He was enjoying the car ride until he remembered that bees are dying globally at an alarming rate. 11/10 https://t.co/cubFg7F4qQ NaN NaN NaN https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1 11 10 Hero None None None None
710 784826020293709826 NaN NaN 2016-10-08 18:41:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ NaN NaN NaN https://twitter.com/dog_rates/status/784826020293709826/photo/1 13 10 Rusty None None None None
711 784517518371221505 NaN NaN 2016-10-07 22:15:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Frankie. He has yet to learn how to control his tongue. 11/10 maybe one day https://t.co/p6fgYe2dB6 NaN NaN NaN https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1 11 10 Frankie None None None None
712 784431430411685888 NaN NaN 2016-10-07 16:33:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stormy. He's curly af. Already pupared for Coachella next year. 12/10 https://t.co/PHA1vtqqpt NaN NaN NaN https://twitter.com/dog_rates/status/784431430411685888/photo/1 12 10 Stormy None None None None
713 784183165795655680 NaN NaN 2016-10-07 00:06:50 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ NaN NaN NaN https://vine.co/v/5ghHLBMMdlV 12 10 Reginald None None None puppo
714 784057939640352768 NaN NaN 2016-10-06 15:49:14 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC NaN NaN NaN https://vine.co/v/5gKxeUpuKEr 12 10 Balto None None None None
715 783839966405230592 NaN NaN 2016-10-06 01:23:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https://t.co/8TCQcsZCZ8 NaN NaN NaN https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1 13 10 Riley None None None None
716 783821107061198850 NaN NaN 2016-10-06 00:08:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mairi. She has mastered the art of camouflage. 12/10 h*ckin sneaky af https://t.co/STcPjiNAHp NaN NaN NaN https://twitter.com/dog_rates/status/783821107061198850/photo/1,https://twitter.com/dog_rates/status/783821107061198850/photo/1 12 10 Mairi None None None None
717 783695101801398276 NaN NaN 2016-10-05 15:47:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Loomis. He's the leader of the Kenneth search party. The passion is almost overwhelming. 12/10 one day he will be free https://t.co/kCRKlFg4AY NaN NaN NaN https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1 12 10 Loomis None None None None
718 783466772167098368 NaN NaN 2016-10-05 00:40:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Finn. He likes eavesdropping from filing cabinets. It's a real issue but no one has approached him about it. 11/10 would still pet https://t.co/s8W8Del9HQ NaN NaN NaN https://twitter.com/dog_rates/status/783466772167098368/photo/1,https://twitter.com/dog_rates/status/783466772167098368/photo/1 11 10 Finn None None None None
719 783391753726550016 NaN NaN 2016-10-04 19:42:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Godi. He's an avid beachgoer and part time rainbow summoner. Eyeliner flawless af. 13/10 would snug well https://t.co/BO936YdJdi NaN NaN NaN https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1 13 10 Godi None None None None
720 783347506784731136 NaN NaN 2016-10-04 16:46:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK 6.742918e+17 4.196984e+09 2015-12-08 18:17:56 +0000 https://twitter.com/dog_rates/status/674291837063053312/photo/1,https://twitter.com/dog_rates/status/674291837063053312/photo/1 11 10 Kenny None None None None
721 783334639985389568 NaN NaN 2016-10-04 15:55:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu NaN NaN NaN https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1 12 10 Dave None None None None
722 783085703974514689 NaN NaN 2016-10-03 23:25:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Earl. He can't catch. Did his best tho. 11/10 would repair confidence with extra pats https://t.co/IsqyvbjFgM NaN NaN NaN https://twitter.com/dog_rates/status/783085703974514689/photo/1,https://twitter.com/dog_rates/status/783085703974514689/photo/1 11 10 Earl None None None None
723 782969140009107456 NaN NaN 2016-10-03 15:42:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX NaN NaN NaN https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1 12 10 Cali None None None None
724 782747134529531904 NaN NaN 2016-10-03 01:00:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Deacon. He's the happiest almost dry doggo I've ever seen. 11/10 would smile back https://t.co/C6fUMnHt1H NaN NaN NaN https://twitter.com/dog_rates/status/782747134529531904/photo/1 11 10 Deacon doggo None None None
725 782722598790725632 NaN NaN 2016-10-02 23:23:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 NaN NaN NaN https://twitter.com/dog_rates/status/782722598790725632/photo/1 10 10 Penny None None None None
726 782598640137187329 NaN NaN 2016-10-02 15:10:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Timmy. He's quite large. According to a trusted source it's actually a dog wearing a dog suit. 11/10 https://t.co/BIUchFwHqn NaN NaN NaN https://twitter.com/dog_rates/status/782598640137187329/photo/1 11 10 Timmy None None None None
727 782305867769217024 NaN NaN 2016-10-01 19:47:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1 NaN NaN NaN https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1 12 10 Sampson doggo None None None
728 782021823840026624 NaN NaN 2016-10-01 00:58:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 7.076109e+17 4.196984e+09 2016-03-09 16:56:11 +0000 https://twitter.com/dog_rates/status/707610948723478529/photo/1,https://twitter.com/dog_rates/status/707610948723478529/photo/1 12 10 Harper None None None None
729 781955203444699136 NaN NaN 2016-09-30 20:33:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chipson. He weighed in at .3 ounces and is officially super h*ckin smol. Space-saving af. 11/10 would snug delicately https://t.co/FjEsk7A1JV NaN NaN NaN https://twitter.com/dog_rates/status/781955203444699136/photo/1 11 10 Chipson None None None None
730 781661882474196992 NaN NaN 2016-09-30 01:08:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road https://t.co/ELqelxWMrC NaN NaN NaN https://twitter.com/dog_rates/status/781661882474196992/photo/1 5 10 None None None None None
731 781655249211752448 NaN NaN 2016-09-30 00:41:48 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Combo. The daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/LOKrNo0OM7 NaN NaN NaN https://vine.co/v/5rt6T3qm7hL 11 10 Combo doggo None None None
732 781524693396357120 NaN NaN 2016-09-29 16:03:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.co/ya7bviQUUf NaN NaN NaN https://twitter.com/dog_rates/status/781524693396357120/photo/1 12 10 None None None None None
733 781308096455073793 NaN NaN 2016-09-29 01:42:20 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Pupper butt 1, Doggo 0. Both 12/10 https://t.co/WQvcPEpH2u NaN NaN NaN https://vine.co/v/5rgu2Law2ut 12 10 None doggo None pupper None
734 781251288990355457 NaN NaN 2016-09-28 21:56:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oakley. He just got yelled at for going 46 in a 45. Churlish af. 11/10 would still pet so well https://t.co/xIYsa6LPA4 NaN NaN NaN https://twitter.com/dog_rates/status/781251288990355457/photo/1,https://twitter.com/dog_rates/status/781251288990355457/photo/1 11 10 Oakley None None None None
735 781163403222056960 NaN NaN 2016-09-28 16:07:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution https://t.co/YkHc7U7uUy NaN NaN NaN https://twitter.com/dog_rates/status/781163403222056960/photo/1 10 10 None None None None None
736 780931614150983680 NaN NaN 2016-09-28 00:46:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5dUYOu4b8d NaN NaN NaN https://twitter.com/dog_rates/status/780931614150983680/photo/1 13 10 None None None None puppo
737 780858289093574656 NaN NaN 2016-09-27 19:54:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dash. He's very stylish, but also incredibly unimpressed with the current state of our nation. 10/10 would pet ears first https://t.co/YElO4hvXI6 NaN NaN NaN https://twitter.com/dog_rates/status/780858289093574656/photo/1 10 10 Dash None None None None
738 780800785462489090 NaN NaN 2016-09-27 16:06:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Koda. He has a weird relationship with tall grass. Slightly concerning. 11/10 would def still pet https://t.co/KQzSR8eCsw NaN NaN NaN https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1 11 10 Koda None None None None
739 780601303617732608 NaN NaN 2016-09-27 02:53:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG NaN NaN NaN https://twitter.com/dog_rates/status/780601303617732608/photo/1 12 10 Hercules None None None None
740 780543529827336192 NaN NaN 2016-09-26 23:04:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a perturbed super floof. 12/10 would snug so damn well https://t.co/VG095mi09Q NaN NaN NaN https://twitter.com/dog_rates/status/780543529827336192/photo/1 12 10 None None None None None
741 780496263422808064 NaN NaN 2016-09-26 19:56:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b 7.424232e+17 4.196984e+09 2016-06-13 18:27:32 +0000 https://twitter.com/dog_rates/status/742423170473463808/photo/1,https://twitter.com/dog_rates/status/742423170473463808/photo/1 12 10 Bell None None None None
742 780476555013349377 NaN NaN 2016-09-26 18:38:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @Patreon: Well. @dog_rates is on Patreon. \n\n12/10. \n\nhttps://t.co/rnKvzt6RJs https://t.co/v4e2ywe8iO 7.804657e+17 1.228326e+09 2016-09-26 17:55:00 +0000 https://www.patreon.com/WeRateDogs,https://twitter.com/Patreon/status/780465709297995776/photo/1,https://www.patreon.com/WeRateDogs,https://twitter.com/Patreon/status/780465709297995776/photo/1 12 10 None None None None None
743 780459368902959104 NaN NaN 2016-09-26 17:29:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bear. Don't worry, he's not a real bear tho. Contains unreal amounts of squish. 11/10 heteroskedastic af https://t.co/coi4l1T2Sm NaN NaN NaN https://twitter.com/dog_rates/status/780459368902959104/photo/1 11 10 Bear None None None None
744 780192070812196864 NaN NaN 2016-09-25 23:47:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 https://t.co/zHIqpM5Gni NaN NaN NaN https://twitter.com/dog_rates/status/780192070812196864/photo/1 11 10 None None None None None
745 780092040432480260 NaN NaN 2016-09-25 17:10:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.c… 7.533757e+17 4.196984e+09 2016-07-13 23:48:51 +0000 https://twitter.com/dog_rates/status/753375668877008896/photo/1 8 10 Hank None None None None
746 780074436359819264 NaN NaN 2016-09-25 16:00:13 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Here's a doggo questioning his entire existence. 10/10 someone tell him he's a good boy https://t.co/dVm5Hgdpeb NaN NaN NaN https://vine.co/v/5nzYBpl0TY2 10 10 None doggo None None None
747 779834332596887552 NaN NaN 2016-09-25 00:06:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD NaN NaN NaN https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1 11 10 Scout None None None None
748 779377524342161408 NaN NaN 2016-09-23 17:50:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Have you ever seen such a smol pupper? Portable af. 12/10 would keep in shirt pocket https://t.co/KsqaIzlQ12 NaN NaN NaN https://twitter.com/dog_rates/status/779377524342161408/video/1 12 10 None None None pupper None
749 779124354206535695 NaN NaN 2016-09-23 01:04:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/… 6.794628e+17 4.196984e+09 2015-12-23 00:45:35 +0000 https://twitter.com/dog_rates/status/679462823135686656/photo/1 11 10 Hurley None None None None
750 779123168116150273 NaN NaN 2016-09-23 01:00:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Reggie. He hugs everyone he meets. 12/10 keep spreading the love Reggie https://t.co/uMfhduaate NaN NaN NaN https://twitter.com/dog_rates/status/779123168116150273/photo/1 12 10 Reggie None None None None
751 779056095788752897 NaN NaN 2016-09-22 20:33:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 NaN NaN NaN https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1 13 10 None None None None None
752 778990705243029504 NaN NaN 2016-09-22 16:13:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jay. He's really h*ckin happy about the start of fall. Sneaky tongue slip in 2nd pic. 11/10 snuggly af https://t.co/vyx1X5eyWI NaN NaN NaN https://twitter.com/dog_rates/status/778990705243029504/photo/1,https://twitter.com/dog_rates/status/778990705243029504/photo/1 11 10 Jay None None None None
753 778774459159379968 NaN NaN 2016-09-22 01:54:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE 7.580996e+17 4.196984e+09 2016-07-27 00:40:12 +0000 https://vine.co/v/hQJbaj1VpIz,https://vine.co/v/hQJbaj1VpIz 13 10 None None None None None
754 778764940568104960 NaN NaN 2016-09-22 01:16:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Oh my god it's Narcos but Barkos. 13/10 someone please make this happen\nhttps://t.co/tird9cIlzB NaN NaN NaN https://m.youtube.com/watch?v=idKxCMsS3FQ&feature=youtu.be 13 10 None None None None None
755 778748913645780993 NaN NaN 2016-09-22 00:13:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mya (pronounced "mmmyah?"). Her head is round af. 11/10 would pat accordingly https://t.co/1dpEuALnY0 NaN NaN NaN https://twitter.com/dog_rates/status/778748913645780993/photo/1 11 10 Mya None None None None
756 778650543019483137 NaN NaN 2016-09-21 17:42:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Strider. He thinks he's a sorority girl. Already wants to go to NYC for a weekend to say he's "studied abroad" 10/10 https://t.co/KYZkPuiC1l NaN NaN NaN https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1 10 10 Strider None None None None
757 778624900596654080 NaN NaN 2016-09-21 16:00:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Penny. She's a sailor pup. 11/10 would take to the open seas with https://t.co/0rRxyBQt32 NaN NaN NaN https://twitter.com/dog_rates/status/778624900596654080/photo/1,https://twitter.com/dog_rates/status/778624900596654080/photo/1 11 10 Penny None None None None
758 778408200802557953 NaN NaN 2016-09-21 01:39:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RIP Loki. Thank you for the good times. You will be missed by many. 14/10 https://t.co/gJKD9pst5A NaN NaN NaN https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1 14 10 None None None None None
759 778396591732486144 NaN NaN 2016-09-21 00:53:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR 7.030419e+17 4.196984e+09 2016-02-26 02:20:37 +0000 https://twitter.com/dog_rates/status/703041949650034688/photo/1,https://twitter.com/dog_rates/status/703041949650034688/photo/1 10 10 an None None None None
760 778383385161035776 NaN NaN 2016-09-21 00:00:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Nala. She's a future Dogue model. Won't respond to my texts. 13/10 would be an honor to pet https://t.co/zP1IvAATWv NaN NaN NaN https://twitter.com/dog_rates/status/778383385161035776/photo/1 13 10 Nala None None None None
761 778286810187399168 NaN NaN 2016-09-20 17:36:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stanley. He has too much skin. Isn't happy about it. Quite pupset actually. Still 11/10 would comfort https://t.co/hhTfnPrWfb NaN NaN NaN https://twitter.com/dog_rates/status/778286810187399168/photo/1,https://twitter.com/dog_rates/status/778286810187399168/photo/1 11 10 Stanley None None None None
762 778039087836069888 NaN NaN 2016-09-20 01:12:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff https://t.co/t8Y4x9DmVD NaN NaN NaN https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1 12 10 None None None pupper None
763 778027034220126208 NaN NaN 2016-09-20 00:24:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq NaN NaN NaN https://twitter.com/dog_rates/status/778027034220126208/photo/1 27 10 Sophie None None pupper None
764 777953400541634568 NaN NaN 2016-09-19 19:31:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://… 7.681934e+17 4.196984e+09 2016-08-23 21:09:14 +0000 https://twitter.com/dog_rates/status/768193404517830656/photo/1 8 10 Gerald doggo None None None
765 777885040357281792 NaN NaN 2016-09-19 15:00:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in https://t.co/pL7wbMRW7M NaN NaN NaN https://twitter.com/dog_rates/status/777885040357281792/photo/1,https://twitter.com/dog_rates/status/777885040357281792/photo/1 3 10 Wesley None None None None
766 777684233540206592 NaN NaN 2016-09-19 01:42:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ NaN NaN NaN https://twitter.com/dog_rates/status/777684233540206592/photo/1 12 10 None None None None None
767 777641927919427584 NaN NaN 2016-09-18 22:54:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS 7.504293e+17 4.196984e+09 2016-07-05 20:41:01 +0000 https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1 12 10 Arnie None None None None
768 777621514455814149 NaN NaN 2016-09-18 21:33:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Derek. You can't look at him and not smile. Must've just had a blue pupsicle. 12/10 would snug intensely https://t.co/BnVTMtUeI3 NaN NaN NaN https://twitter.com/dog_rates/status/777621514455814149/photo/1 12 10 Derek None None None None
769 777189768882946048 NaN NaN 2016-09-17 16:57:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jeffrey. He's being held so he doesn't fly away. 12/10 would set free https://t.co/d3aLyCykn7 NaN NaN NaN https://twitter.com/dog_rates/status/777189768882946048/photo/1,https://twitter.com/dog_rates/status/777189768882946048/photo/1 12 10 Jeffrey None None None None
770 776819012571455488 NaN NaN 2016-09-16 16:24:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC 6.798284e+17 4.196984e+09 2015-12-24 00:58:27 +0000 https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1 13 10 None None None pupper None
771 776813020089548800 NaN NaN 2016-09-16 16:00:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Solomon. He was arrested for possession of adorable and attempted extra pats on the head. 12/10 would post bail https://t.co/nFqLaOLUQA NaN NaN NaN https://twitter.com/dog_rates/status/776813020089548800/photo/1,https://twitter.com/dog_rates/status/776813020089548800/photo/1 12 10 Solomon None None None None
772 776477788987613185 NaN NaN 2016-09-15 17:48:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Huck. He's addicted to caffeine. Hope it's not too latte to seek help. 11/10 stay strong pupper https://t.co/iJE3F0VozW NaN NaN NaN https://twitter.com/dog_rates/status/776477788987613185/photo/1,https://twitter.com/dog_rates/status/776477788987613185/photo/1 11 10 Huck None None pupper None
773 776249906839351296 NaN NaN 2016-09-15 02:42:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://… 7.007478e+17 4.196984e+09 2016-02-19 18:24:26 +0000 https://twitter.com/dog_rates/status/700747788515020802/photo/1 11 10 very None None None None
774 776218204058357768 NaN NaN 2016-09-15 00:36:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath https://t.co/nzqTNw0744 NaN NaN NaN https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1 13 10 None None floofer None None
775 776201521193218049 NaN NaN 2016-09-14 23:30:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC NaN NaN NaN https://twitter.com/dog_rates/status/776201521193218049/photo/1 10 10 O None None None None
776 776113305656188928 NaN NaN 2016-09-14 17:40:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG NaN NaN NaN https://twitter.com/dog_rates/status/776113305656188928/photo/1 11 10 Sampson None None pupper None
777 776088319444877312 NaN NaN 2016-09-14 16:00:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I can't tap the screen to make the hearts appear fast enough. 10/10 for the source of all future unproductiveness https://t.co/wOhuABgj6I NaN NaN NaN https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1 10 10 None None None None None
778 775898661951791106 NaN NaN 2016-09-14 03:27:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda 7.331095e+17 4.196984e+09 2016-05-19 01:38:16 +0000 https://twitter.com/dog_rates/status/733109485275860992/photo/1,https://twitter.com/dog_rates/status/733109485275860992/photo/1 12 10 None doggo None pupper None
779 775842724423557120 NaN NaN 2016-09-13 23:44:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Blue. He was having an average day until his owner told him about Bront. 12/10 h*ckin hysterical af https://t.co/saRYTcxQeH NaN NaN NaN https://twitter.com/dog_rates/status/775842724423557120/photo/1,https://twitter.com/dog_rates/status/775842724423557120/photo/1 12 10 Blue None None None None
780 775733305207554048 NaN NaN 2016-09-13 16:30:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://t.co/9CcBSxCXXG NaN NaN NaN https://twitter.com/dog_rates/status/775733305207554048/photo/1 11 10 Anakin doggo None None None
781 775729183532220416 NaN NaN 2016-09-13 16:13:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This girl straight up rejected a guy because he doesn't like dogs. She is my hero and I give her 13/10 https://t.co/J39lT3b0rH NaN NaN NaN https://twitter.com/dog_rates/status/775729183532220416/photo/1 13 10 None None None None None
782 775364825476165632 NaN NaN 2016-09-12 16:05:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Finley. He's an independent doggo still adjusting to life on his own. 11/10 https://t.co/7FNcBaKbci NaN NaN NaN https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1 11 10 Finley doggo None None None
783 775350846108426240 NaN NaN 2016-09-12 15:10:21 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Maximus. A little rain won't stop him. He will persevere. 12/10 innovative af https://t.co/2OmDMAkkou NaN NaN NaN https://vine.co/v/ijmv0PD0XXD 12 10 Maximus None None None None
784 775096608509886464 NaN NaN 2016-09-11 22:20:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https:/… 7.403732e+17 4.196984e+09 2016-06-08 02:41:38 +0000 https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1 9 11 None None None None None
785 775085132600442880 NaN NaN 2016-09-11 21:34:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT NaN NaN NaN https://twitter.com/dog_rates/status/775085132600442880/photo/1 13 10 Tucker None None None None
786 774757898236878852 NaN NaN 2016-09-10 23:54:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Finley. She's a Beneboop Cumbersplash. 12/10 I'd do unspeakable things for Finley https://t.co/dS8SCbNF9P NaN NaN NaN https://twitter.com/dog_rates/status/774757898236878852/photo/1 12 10 Finley None None None None
787 774639387460112384 NaN NaN 2016-09-10 16:03:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sprinkles. He's trapped in light jail. 10/10 would post bail for him https://t.co/4s5Xlijogu NaN NaN NaN https://twitter.com/dog_rates/status/774639387460112384/photo/1,https://twitter.com/dog_rates/status/774639387460112384/photo/1 10 10 Sprinkles None None None None
788 774314403806253056 NaN NaN 2016-09-09 18:31:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpfxIH NaN NaN NaN https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1 14 10 None None None None None
789 773985732834758656 NaN NaN 2016-09-08 20:45:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Winnie. She just made awkward eye contact with the driver beside her. Poor pupper panicked. 11/10 would comfort https://t.co/RFWtDqTnAz NaN NaN NaN https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1 11 10 Winnie None None pupper None
790 773922284943896577 NaN NaN 2016-09-08 16:33:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Heinrich (pronounced "Pat"). He's a Botswanian Vanderfloof. Snazzy af bandana. 12/10 downright puptacular https://t.co/G56ikYAqFg NaN NaN NaN https://twitter.com/dog_rates/status/773922284943896577/photo/1 12 10 Heinrich None None None None
791 773704687002451968 NaN NaN 2016-09-08 02:09:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Loki. He knows he's adorable. One ear always pupared. 12/10 would snug in depicted fashion forever https://t.co/OqNggd4Oio NaN NaN NaN https://twitter.com/dog_rates/status/773704687002451968/photo/1,https://twitter.com/dog_rates/status/773704687002451968/photo/1 12 10 Loki None None None None
792 773670353721753600 NaN NaN 2016-09-07 23:52:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shakespeare. He appears to be maximum level pettable. Born with no eyes tho (tragic). 10/10 probably wise https://t.co/rA8WUVOLBr NaN NaN NaN https://twitter.com/dog_rates/status/773670353721753600/photo/1 10 10 Shakespeare None None None None
793 773547596996571136 NaN NaN 2016-09-07 15:44:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb NaN NaN NaN https://twitter.com/dog_rates/status/773547596996571136/photo/1 11 10 Chelsea None None pupper None
794 773336787167145985 NaN NaN 2016-09-07 01:47:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https:/… 7.713808e+17 4.196984e+09 2016-09-01 16:14:48 +0000 https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1 11 10 Fizz None None None None
795 773308824254029826 NaN NaN 2016-09-06 23:56:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t.co/0Fcft7jl4N NaN NaN NaN https://twitter.com/dog_rates/status/773308824254029826/photo/1 12 10 Bungalo None None None None
796 773247561583001600 NaN NaN 2016-09-06 19:52:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chip. He's a pupholder. Comes with the car. Requires frequent pettings. Shifts for you. 10/10 innovative af https://t.co/hG5WYT9ECn NaN NaN NaN https://twitter.com/dog_rates/status/773247561583001600/photo/1 10 10 Chip None None None None
797 773191612633579521 NaN NaN 2016-09-06 16:10:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Grey. He's the dogtor in charge of your checkpup today. 12/10 I'd never miss an appointment https://t.co/9HEVPJEioD NaN NaN NaN https://twitter.com/dog_rates/status/773191612633579521/photo/1,https://twitter.com/dog_rates/status/773191612633579521/photo/1 12 10 Grey None None None None
798 772877495989305348 NaN NaN 2016-09-05 19:22:09 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> You need to watch these two doggos argue through a cat door. Both 11/10 https://t.co/qEP31epKEV NaN NaN NaN https://twitter.com/dog_rates/status/772877495989305348/video/1 11 10 None None None None None
799 772826264096874500 NaN NaN 2016-09-05 15:58:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Roosevelt. He's preparing for takeoff. Make sure tray tables are in their full pupright &amp; licked position\n11/10 https://t.co/7CQkn3gHOQ NaN NaN NaN https://twitter.com/dog_rates/status/772826264096874500/photo/1 11 10 Roosevelt None None None None
800 772615324260794368 NaN NaN 2016-09-05 02:00:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH 7.652221e+17 4.196984e+09 2016-08-15 16:22:20 +0000 https://twitter.com/dog_rates/status/765222098633691136/photo/1,https://twitter.com/dog_rates/status/765222098633691136/photo/1 10 10 Gromit None None None None
801 772581559778025472 NaN NaN 2016-09-04 23:46:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn NaN NaN NaN https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1 10 10 a None None None None
802 772193107915964416 NaN NaN 2016-09-03 22:02:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Willem. He's a Penn State pupper. Thinks the hood makes him more intimidating. It doesn't. 12/10 https://t.co/Dp0s7MRIHK NaN NaN NaN https://twitter.com/dog_rates/status/772193107915964416/photo/1 12 10 Willem None None pupper None
803 772152991789019136 NaN NaN 2016-09-03 19:23:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets https://t.co/H9yjI9eo3A NaN NaN NaN https://twitter.com/dog_rates/status/772152991789019136/photo/1,https://twitter.com/dog_rates/status/772152991789019136/photo/1 10 10 None None None None None
804 772117678702071809 NaN NaN 2016-09-03 17:02:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jack. He's a Clemson pup. Appears to be rather h*ckin pettable. Almost makes me want to root for Clemson. 12/10 https://t.co/GHOfbTVQti NaN NaN NaN https://twitter.com/dog_rates/status/772117678702071809/photo/1 12 10 Jack None None None None
805 772114945936949249 NaN NaN 2016-09-03 16:52:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Finn. He's very nervous for the game. Has a lot of money riding on it.10/10 would attempt to comfort https://t.co/CbtNfecWiT NaN NaN NaN https://twitter.com/dog_rates/status/772114945936949249/photo/1 10 10 Finn None None None None
806 772102971039580160 NaN NaN 2016-09-03 16:04:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Penny. She's an OU cheerleader. About to do a triple back handspring down the stairs. 11/10 hype af https://t.co/B2f3XkGU5c NaN NaN NaN https://twitter.com/dog_rates/status/772102971039580160/photo/1 11 10 Penny None None None None
807 771908950375665664 NaN NaN 2016-09-03 03:13:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Doggo will persevere. 13/10\nhttps://t.co/yOVzAomJ6k NaN NaN NaN https://twitter.com/yahoonews/status/771905568600719360 13 10 None doggo None None None
808 771770456517009408 NaN NaN 2016-09-02 18:03:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm NaN NaN NaN https://twitter.com/dog_rates/status/771770456517009408/photo/1 11 10 Davey None None None None
809 771500966810099713 NaN NaN 2016-09-02 00:12:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dakota. He's just saying hi. That's all. 12/10 someone wave back https://t.co/1tWe5zZoHv NaN NaN NaN https://twitter.com/dog_rates/status/771500966810099713/photo/1 12 10 Dakota None None None None
810 771380798096281600 NaN NaN 2016-09-01 16:14:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https://t.co/sPB5JMnWBn NaN NaN NaN https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1 11 10 Fizz None None None None
811 771171053431250945 NaN NaN 2016-09-01 02:21:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf 6.733201e+17 4.196984e+09 2015-12-06 01:56:44 +0000 https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1 11 10 Frankie None None None None
812 771136648247640064 NaN NaN 2016-09-01 00:04:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dixie. She wants to be a ship captain. Won't let anything get in between her and her dreams. 11/10 https://t.co/8VEDZKHddR NaN NaN NaN https://twitter.com/dog_rates/status/771136648247640064/photo/1 11 10 Dixie None None None None
813 771102124360998913 NaN NaN 2016-08-31 21:47:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charlie. He works for @TODAYshow. Super sneaky tongue slip here. 12/10 would pet until someone made me stop https://t.co/K5Jo7QRCvA NaN NaN NaN https://twitter.com/dog_rates/status/771102124360998913/photo/1 12 10 Charlie None None None None
814 771014301343748096 NaN NaN 2016-08-31 15:58:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy https://t.co/OJZQ6I4gGd NaN NaN NaN https://twitter.com/dog_rates/status/771014301343748096/photo/1 7 10 None None None None None
815 771004394259247104 NaN NaN 2016-08-31 15:19:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @katieornah: @dog_rates learning a lot at college 12/10 for my professor thank u for the pupper slides https://t.co/nTFDr99hg0 7.710021e+17 1.732729e+09 2016-08-31 15:10:07 +0000 https://twitter.com/katieornah/status/771002130450743296/photo/1,https://twitter.com/katieornah/status/771002130450743296/photo/1 12 10 None None None pupper None
816 770787852854652928 NaN NaN 2016-08-31 00:58:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Winston. His tongue has gone rogue. Doing him quite a frighten. 10/10 hang in there Winston https://t.co/d0QEbp78Yi NaN NaN NaN https://twitter.com/dog_rates/status/770787852854652928/photo/1 10 10 Winston None None None None
817 770772759874076672 NaN NaN 2016-08-30 23:58:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sebastian. He's super h*ckin fluffy. That's really all you need to know. 11/10 would snug intensely https://t.co/lqr0NdtwQo NaN NaN NaN https://twitter.com/dog_rates/status/770772759874076672/photo/1 11 10 Sebastian None None None None
818 770743923962707968 NaN NaN 2016-08-30 22:04:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t… 7.392382e+17 4.196984e+09 2016-06-04 23:31:25 +0000 https://twitter.com/dog_rates/status/739238157791694849/video/1 13 10 None doggo None None None
819 770655142660169732 NaN NaN 2016-08-30 16:11:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Pls stop sending in non-canines like this Arctic Floof Kangaroo. This is very frustrating. 11/10 https://t.co/qlUDuPoE3d NaN NaN NaN https://twitter.com/dog_rates/status/770655142660169732/photo/1 11 10 very None None None None
820 770414278348247044 NaN NaN 2016-08-30 00:14:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Al Cabone. He's a gangsta puppa. Rather h*ckin ruthless. Shows no mercy sometimes. 11/10 pet w extreme caution https://t.co/OUwWbEKOUV NaN NaN NaN https://twitter.com/dog_rates/status/770414278348247044/photo/1 11 10 Al None None None None
821 770293558247038976 NaN NaN 2016-08-29 16:14:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jackson. There's nothing abnormal about him. Just your average really good dog. 10/10 https://t.co/3fEPpj0KYw NaN NaN NaN https://twitter.com/dog_rates/status/770293558247038976/photo/1 10 10 Jackson None None None None
822 770093767776997377 NaN NaN 2016-08-29 03:00:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC 7.410673e+17 4.196984e+09 2016-06-10 00:39:48 +0000 https://twitter.com/dog_rates/status/741067306818797568/photo/1,https://twitter.com/dog_rates/status/741067306818797568/photo/1 12 10 just doggo None pupper None
823 770069151037685760 NaN NaN 2016-08-29 01:22:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Carbon. This is his first time swimming. He's having a h*ckin blast. 10/10 we should all be this happy https://t.co/mADHGenzFS NaN NaN NaN https://twitter.com/dog_rates/status/770069151037685760/photo/1 10 10 Carbon None None None None
824 769940425801170949 NaN NaN 2016-08-28 16:51:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV NaN NaN NaN https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1 12 10 Klein None None None None
825 769695466921623552 NaN NaN 2016-08-28 00:37:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Titan. He's trying to make friends. Offering up his favorite stick. 13/10 philanthropic af https://t.co/vhrkz0dK4v NaN NaN NaN https://twitter.com/dog_rates/status/769695466921623552/photo/1 13 10 Titan None None None None
826 769335591808995329 NaN NaN 2016-08-27 00:47:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f 7.069045e+17 4.196984e+09 2016-03-07 18:09:06 +0000 https://vine.co/v/iXQAm5Lrgrh,https://vine.co/v/iXQAm5Lrgrh 13 10 None None None None None
827 769212283578875904 NaN NaN 2016-08-26 16:37:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is DonDon. He's way up but doesn't feel blessed. Rather uncomfortable actually. 12/10 I'll save you DonDon https://t.co/OCYLz3fjVE NaN NaN NaN https://twitter.com/dog_rates/status/769212283578875904/photo/1 12 10 DonDon None None None None
828 768970937022709760 NaN NaN 2016-08-26 00:38:52 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Kirby. His bowl weighs more than him. 12/10 would assist https://t.co/UlB2mzw3Xs NaN NaN NaN https://twitter.com/dog_rates/status/768970937022709760/video/1 12 10 Kirby None None None None
829 768909767477751808 NaN NaN 2016-08-25 20:35:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https:/… 7.001438e+17 4.196984e+09 2016-02-18 02:24:13 +0000 https://twitter.com/dog_rates/status/700143752053182464/photo/1 10 10 None None None pupper None
830 768855141948723200 NaN NaN 2016-08-25 16:58:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jesse. He really wants a belly rub. Will be as cute as possible to achieve that goal. 11/10 https://t.co/1BxxcdVNJ8 NaN NaN NaN https://twitter.com/dog_rates/status/768855141948723200/photo/1 11 10 Jesse None None None None
831 768609597686943744 NaN NaN 2016-08-25 00:43:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lou. His sweater is too small and he already cut the tags off. Very very churlish. 10/10 would still pet https://t.co/dZPMLresEr NaN NaN NaN https://twitter.com/dog_rates/status/768609597686943744/photo/1 10 10 Lou None None None None
832 768596291618299904 NaN NaN 2016-08-24 23:50:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Oakley and Charlie. They're convinced that they each have their own stick. Nobody tell them. Both 12/10 https://t.co/J2AJdyxglH NaN NaN NaN https://twitter.com/dog_rates/status/768596291618299904/photo/1 12 10 Oakley None None None None
833 768554158521745409 NaN NaN 2016-08-24 21:02:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.c… 7.399792e+17 4.196984e+09 2016-06-07 00:36:02 +0000 https://twitter.com/dog_rates/status/739979191639244800/photo/1 12 10 Nollie None None None None
834 768473857036525572 NaN NaN 2016-08-24 15:43:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Chevy. He had a late breakfast and now has to choose between a late lunch or an early dinner. 11/10 very pupset https://t.co/goy9053wC7 NaN NaN NaN https://twitter.com/dog_rates/status/768473857036525572/photo/1 11 10 Chevy None None None None
835 768193404517830656 NaN NaN 2016-08-23 21:09:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://t.co/WmczvjCWJq NaN NaN NaN https://twitter.com/dog_rates/status/768193404517830656/photo/1 8 10 Gerald doggo None None None
836 767884188863397888 NaN NaN 2016-08-23 00:40:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tito. He's on the lookout. Nobody knows for what. 10/10 https://t.co/Qai481H6RA NaN NaN NaN https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1 10 10 Tito None None None None
837 767754930266464257 NaN NaN 2016-08-22 16:06:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb68IsVb9O NaN NaN NaN https://twitter.com/dog_rates/status/767754930266464257/photo/1 11 10 Philbert None None None None
838 767500508068192258 NaN NaN 2016-08-21 23:15:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Louie. He's making quite a h*ckin mess. Doesn't seem to care. 12/10 jubilant af https://t.co/Z2g2YWPzX2 NaN NaN NaN https://twitter.com/dog_rates/status/767500508068192258/photo/1 12 10 Louie None None None None
839 767191397493538821 NaN NaN 2016-08-21 02:47:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I don't know any of the backstory behind this picture but for some reason I'm crying. 13/10 for owner and doggo https://t.co/QOKZdus9TT NaN NaN NaN https://twitter.com/dog_rates/status/767191397493538821/photo/1 13 10 None doggo None None None
840 767122157629476866 NaN NaN 2016-08-20 22:12:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rupert. You betrayed him with bath time but he forgives you. Cuddly af 13/10 https://t.co/IEARC2sRzC NaN NaN NaN https://twitter.com/dog_rates/status/767122157629476866/photo/1,https://twitter.com/dog_rates/status/767122157629476866/photo/1 13 10 Rupert None None None None
841 766864461642756096 NaN NaN 2016-08-20 05:08:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https:/… 7.599238e+17 4.196984e+09 2016-08-01 01:28:46 +0000 https://twitter.com/dog_rates/status/759923798737051648/photo/1 10 10 None None None None None
842 766793450729734144 NaN NaN 2016-08-20 00:26:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rufus. He just missed out on the 100m final at Rio. Already training hard for Tokyo. 10/10 never give pup https://t.co/exrRjjJqeO NaN NaN NaN https://twitter.com/dog_rates/status/766793450729734144/photo/1 10 10 Rufus None None None None
843 766714921925144576 7.667118e+17 4.196984e+09 2016-08-19 19:14:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> His name is Charley and he already has a new set of wheels thanks to donations. I heard his top speed was also increased. 13/10 for Charley NaN NaN NaN NaN 13 10 None None None None None
844 766693177336135680 NaN NaN 2016-08-19 17:47:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brudge. He's a Doberdog. Going to be h*ckin massive one day. 11/10 would pat on head approvingly https://t.co/cTlHjEUNK8 NaN NaN NaN https://twitter.com/dog_rates/status/766693177336135680/photo/1 11 10 Brudge None None None None
845 766423258543644672 NaN NaN 2016-08-18 23:55:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 https://t.co/Tytt15VquG NaN NaN NaN https://twitter.com/dog_rates/status/766423258543644672/photo/1,https://twitter.com/dog_rates/status/766423258543644672/photo/1 9 10 Shadoe None None None None
846 766313316352462849 NaN NaN 2016-08-18 16:38:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oscar. He has legendary eyebrows and he h*ckin knows it. Curly af too. 12/10 would hug passionately https://t.co/xuxZoObmF0 NaN NaN NaN https://twitter.com/dog_rates/status/766313316352462849/photo/1 12 10 Oscar None None None None
847 766078092750233600 NaN NaN 2016-08-18 01:03:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH 7.258423e+17 4.196984e+09 2016-04-29 00:21:01 +0000 https://twitter.com/dog_rates/status/725842289046749185/photo/1,https://twitter.com/dog_rates/status/725842289046749185/photo/1 12 10 Colby None None None None
848 766069199026450432 NaN NaN 2016-08-18 00:28:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Juno. She can see your future. 12/10 h*ckin mesmerizing af https://t.co/Z69mShifuk NaN NaN NaN https://twitter.com/dog_rates/status/766069199026450432/photo/1 12 10 Juno None None None None
849 766008592277377025 NaN NaN 2016-08-17 20:27:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Angel. She stole the @ShopWeRateDogs shirt from her owner. Fits pretty well actually. 11/10 would forgive https://t.co/jaivZ1dcUL NaN NaN NaN https://twitter.com/dog_rates/status/766008592277377025/photo/1 11 10 Angel None None None None
850 765719909049503744 NaN NaN 2016-08-17 01:20:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brat. He has a hard time being ferocious so his owner helps out. H*ckin scary af now. 12/10 would still pet https://t.co/soxdNqZDZ2 NaN NaN NaN https://twitter.com/dog_rates/status/765719909049503744/photo/1 12 10 Brat None None None None
851 765669560888528897 NaN NaN 2016-08-16 22:00:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tove. She's a Balsamic Poinsetter. Surprisingly deadly. 12/10 snug with caution https://t.co/t6RvnVEdRR NaN NaN NaN https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1 12 10 Tove None None None None
852 765395769549590528 NaN NaN 2016-08-16 03:52:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB NaN NaN NaN https://twitter.com/dog_rates/status/765395769549590528/photo/1 13 10 my None None None None
853 765371061932261376 NaN NaN 2016-08-16 02:14:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Louie. He's had a long day. Did a lot of pupper things. Also appears to be rather heckin pettable. 11/10 https://t.co/w2qDmoTIZ5 NaN NaN NaN https://twitter.com/dog_rates/status/765371061932261376/photo/1,https://twitter.com/dog_rates/status/765371061932261376/photo/1 11 10 Louie None None pupper None
854 765222098633691136 NaN NaN 2016-08-15 16:22:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH NaN NaN NaN https://twitter.com/dog_rates/status/765222098633691136/photo/1 10 10 Gromit None None None None
855 764857477905154048 NaN NaN 2016-08-14 16:13:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Aubie. He has paws for days. Nibbling tables is one of his priorities. Second only to being cuddly af. 12/10 https://t.co/cBIFBsCRz6 NaN NaN NaN https://twitter.com/dog_rates/status/764857477905154048/photo/1 12 10 Aubie None None None None
856 764259802650378240 NaN NaN 2016-08-13 00:38:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kota and her son Benedict. She doesn't know why you're staring. They are a normal family. Both 10/10 https://t.co/Q1v9BZylvZ NaN NaN NaN https://twitter.com/dog_rates/status/764259802650378240/photo/1,https://twitter.com/dog_rates/status/764259802650378240/photo/1 10 10 Kota None None None None
857 763956972077010945 7.638652e+17 1.584641e+07 2016-08-12 04:35:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @TheEllenShow I'm not sure if you know this but that doggo right there is a 12/10 NaN NaN NaN NaN 12 10 None doggo None None None
858 763837565564780549 NaN NaN 2016-08-11 20:40:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo NaN NaN NaN https://twitter.com/dog_rates/status/763837565564780549/photo/1 11 10 Alfie None None None None
859 763183847194451968 NaN NaN 2016-08-10 01:23:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark https://t.co/EDMcwt86fU NaN NaN NaN https://twitter.com/dog_rates/status/763183847194451968/photo/1 8 10 Clark None None None None
860 763167063695355904 NaN NaN 2016-08-10 00:16:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https:/… 6.732953e+17 4.196984e+09 2015-12-06 00:17:55 +0000 https://twitter.com/dog_rates/status/673295268553605120/photo/1 8 10 Eve None None pupper None
861 763103485927849985 NaN NaN 2016-08-09 20:03:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Belle. She's a Butterflop Hufflepoof. Rarer than most. Having trouble with car seat. 10/10 perturbed af https://t.co/VIXT3D26VM NaN NaN NaN https://twitter.com/dog_rates/status/763103485927849985/photo/1,https://twitter.com/dog_rates/status/763103485927849985/photo/1 10 10 Belle None None None None
862 762699858130116608 NaN NaN 2016-08-08 17:19:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3ZgivD NaN NaN NaN https://twitter.com/dog_rates/status/762699858130116608/photo/1 11 10 Leela None None None None
863 762471784394268675 NaN NaN 2016-08-08 02:13:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Glenn. Being in public scares him. Frighteningly relatable. 12/10 keep hangin in there Glenn (Imgur - Wuhahha) https://t.co/pA4MDKwRci NaN NaN NaN https://twitter.com/dog_rates/status/762471784394268675/video/1 12 10 Glenn None None None None
864 762464539388485633 NaN NaN 2016-08-08 01:44:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.co/zGSj1oUgxx NaN NaN NaN https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1 12 10 Buddy None None None None
865 762316489655476224 NaN NaN 2016-08-07 15:56:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Scout. He specializes in mid-air freeze frames. 11/10 https://t.co/sAHmwRtfSq NaN NaN NaN https://twitter.com/dog_rates/status/762316489655476224/photo/1 11 10 Scout None None None None
866 762035686371364864 NaN NaN 2016-08-06 21:20:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This left me speechless. 14/10 heckin heroic af https://t.co/3td8P3o0mB NaN NaN NaN https://twitter.com/dog_rates/status/762035686371364864/video/1 14 10 None None None None None
867 761976711479193600 NaN NaN 2016-08-06 17:26:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shelby. She finds stuff to put on her head for attention. It works really well. 12/10 talented af https://t.co/WTZ484EntP NaN NaN NaN https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1 12 10 Shelby None None None None
868 761750502866649088 NaN NaN 2016-08-06 02:27:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw 6.853251e+17 4.196984e+09 2016-01-08 05:00:14 +0000 https://twitter.com/dog_rates/status/685325112850124800/photo/1,https://twitter.com/dog_rates/status/685325112850124800/photo/1 10 10 None None None None None
869 761745352076779520 NaN NaN 2016-08-06 02:06:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys.. we only rate dogs. Pls don't send any more pics of the Loch Ness Monster. Only send in dogs. Thank you. 11/10 https://t.co/obH5vMbm1j NaN NaN NaN https://twitter.com/dog_rates/status/761745352076779520/photo/1 11 10 None None None None None
870 761672994376806400 NaN NaN 2016-08-05 21:19:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.co/EY8kEFuzK7 NaN NaN NaN https://twitter.com/dog_rates/status/761672994376806400/video/1 10 10 None None None None None
871 761599872357261312 NaN NaN 2016-08-05 16:28:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sephie. According to this picture, she can read. Fantastic at following directions. 11/10 such a good girl https://t.co/7HY9RvCudo NaN NaN NaN https://twitter.com/dog_rates/status/761599872357261312/photo/1 11 10 Sephie None None None None
872 761371037149827077 NaN NaN 2016-08-05 01:19:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ 7.116948e+17 4.196984e+09 2016-03-20 23:23:54 +0000 https://twitter.com/dog_rates/status/711694788429553666/photo/1,https://twitter.com/dog_rates/status/711694788429553666/photo/1 13 10 None None None None None
873 761334018830917632 NaN NaN 2016-08-04 22:52:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bruce. I really want to hear the joke he was told. 10/10 for chuckle pup https://t.co/ErPLjjJOKc NaN NaN NaN https://twitter.com/dog_rates/status/761334018830917632/photo/1 10 10 Bruce None None None None
874 761292947749015552 NaN NaN 2016-08-04 20:09:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Bonaparte. He's pupset because it's cloudy at the beach. Can't take any pics for his Instagram. 11/10 https://t.co/0THNOfv2Jo NaN NaN NaN https://twitter.com/dog_rates/status/761292947749015552/photo/1 11 10 Bonaparte None None None None
875 761227390836215808 NaN NaN 2016-08-04 15:48:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Albert. He just found out that bees are dying globally at an alarming rate. 10/10 heckin worried af now https://t.co/nhLX27WsDY NaN NaN NaN https://twitter.com/dog_rates/status/761227390836215808/photo/1 10 10 Albert None None None None
876 761004547850530816 NaN NaN 2016-08-04 01:03:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK NaN NaN NaN https://twitter.com/dog_rates/status/761004547850530816/photo/1 11 10 Bo None None None None
877 760893934457552897 NaN NaN 2016-08-03 17:43:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wishes. He has the day off. Daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/H9YgrUkYwa NaN NaN NaN https://twitter.com/dog_rates/status/760893934457552897/photo/1 11 10 Wishes doggo None None None
878 760656994973933572 NaN NaN 2016-08-03 02:02:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rose. Her face is stuck like that. 11/10 would pet so heckin well https://t.co/tl3gNYdoq2 NaN NaN NaN https://twitter.com/dog_rates/status/760656994973933572/photo/1,https://twitter.com/dog_rates/status/760656994973933572/photo/1 11 10 Rose None None None None
879 760641137271070720 NaN NaN 2016-08-03 00:59:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Theo. He can walk on water. Still coming to terms with it. 12/10 magical af https://t.co/8Kmuj6SFbC NaN NaN NaN https://twitter.com/dog_rates/status/760641137271070720/photo/1 12 10 Theo None None None None
880 760539183865880579 NaN NaN 2016-08-02 18:14:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Atlas. Swinging is his passion. 12/10 would push all day https://t.co/9k8LLjJ0uJ NaN NaN NaN https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1 12 10 Atlas None None None None
881 760521673607086080 NaN NaN 2016-08-02 17:04:31 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Doggo want what doggo cannot have. Temptation strong, dog stronger. 12/10 https://t.co/IqyTF6qik6 NaN NaN NaN https://vine.co/v/5ApKetxzmTB 12 10 None doggo None None None
882 760290219849637889 NaN NaN 2016-08-02 01:44:48 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Rocco. He's doing his best. 13/10 someone help him (IG: rocco_roni) https://t.co/qFsl1nnXMv NaN NaN NaN https://twitter.com/dog_rates/status/760290219849637889/video/1 13 10 Rocco None None None None
883 760252756032651264 NaN NaN 2016-08-01 23:15:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Fido. He can tell the weather. Not good at fetch tho. Never comes when called. 4/10 would probably still pet https://t.co/4gOv2Q3iKP NaN NaN NaN https://twitter.com/dog_rates/status/760252756032651264/photo/1 4 10 Fido None None None None
884 760190180481531904 NaN NaN 2016-08-01 19:07:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sadie. She's addicted to balloons. It's tearing her family apart. Won't admit she has a problem. Still 10/10 https://t.co/h6s9Rch0gZ NaN NaN NaN https://twitter.com/dog_rates/status/760190180481531904/photo/1 10 10 Sadie None None None None
885 760153949710192640 NaN NaN 2016-08-01 16:43:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @hownottodraw: The story/person behind @dog_rates is heckin adorable af. 11/10, probably would pet. https://t.co/AG5UnRrmzJ 7.601538e+17 1.950368e+08 2016-08-01 16:42:51 +0000 https://weratedogs.com/pages/about-us,https://weratedogs.com/pages/about-us 11 10 None None None None None
886 759943073749200896 NaN NaN 2016-08-01 02:45:22 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Here's a wicked fast pupper. 12/10 camera could barely keep pup https://t.co/HtAR6gpUAu NaN NaN NaN https://vine.co/v/5AJm5pq7Kav 12 10 None None None pupper None
887 759923798737051648 NaN NaN 2016-08-01 01:28:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https://t.co/49hkNAsubi NaN NaN NaN https://twitter.com/dog_rates/status/759923798737051648/photo/1 10 10 None None None None None
888 759846353224826880 NaN NaN 2016-07-31 20:21:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kirby. He's a Beneblip Cumberpat. Pretty heckin rare. 11/10 would put my face against his face https://t.co/fd6uucghY6 NaN NaN NaN https://twitter.com/dog_rates/status/759846353224826880/photo/1 11 10 Kirby None None None None
889 759793422261743616 NaN NaN 2016-07-31 16:50:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Maggie &amp; Lila. Maggie is the doggo, Lila is the pupper. They are sisters. Both 12/10 would pet at the same time https://t.co/MYwR4DQKll NaN NaN NaN https://twitter.com/dog_rates/status/759793422261743616/photo/1,https://twitter.com/dog_rates/status/759793422261743616/photo/1 12 10 Maggie doggo None pupper None
890 759566828574212096 NaN NaN 2016-07-31 01:50:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P 7.395441e+17 4.196984e+09 2016-06-05 19:47:03 +0000 https://twitter.com/dog_rates/status/739544079319588864/photo/1,https://twitter.com/dog_rates/status/739544079319588864/photo/1 10 10 None None None None None
891 759557299618865152 NaN NaN 2016-07-31 01:12:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Emma. She can't believe her last guess didn't hit. Convinced ur stacking them on top of each other. 10/10 https://t.co/JRV1dhBYwu NaN NaN NaN https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1 10 10 Emma None None None None
892 759447681597108224 NaN NaN 2016-07-30 17:56:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.co/vT3JM8b989 NaN NaN NaN https://twitter.com/dog_rates/status/759447681597108224/photo/1 11 10 Oakley None None None None
893 759446261539934208 NaN NaN 2016-07-30 17:51:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> No no no this is all wrong. The Walmart had to have run into the dog driving the car. 10/10 someone tell him it's ok\nhttps://t.co/fRaTGcj68A NaN NaN NaN https://twitter.com/wsaznews/status/759167558763196416 10 10 None None None None None
894 759197388317847553 NaN NaN 2016-07-30 01:22:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Luna. She's just heckin precious af I have nothing else to say. 12/10 https://t.co/gQH2mmKIJW NaN NaN NaN https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1 12 10 Luna None None None None
895 759159934323924993 NaN NaN 2016-07-29 22:53:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA 6.703191e+17 4.196984e+09 2015-11-27 19:11:49 +0000 https://twitter.com/dog_rates/status/670319130621435904/photo/1,https://twitter.com/dog_rates/status/670319130621435904/photo/1 11 10 None None None None None
896 759099523532779520 NaN NaN 2016-07-29 18:53:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby https://t.co/Cim4DSj6Oi NaN NaN NaN https://twitter.com/dog_rates/status/759099523532779520/photo/1 7 10 Toby None None None None
897 759047813560868866 NaN NaN 2016-07-29 15:27:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Spencer. He's part of the Queen's Guard. Takes his job very seriously. 11/10 https://t.co/8W5iSOgXfx NaN NaN NaN https://twitter.com/dog_rates/status/759047813560868866/photo/1,https://twitter.com/dog_rates/status/759047813560868866/photo/1 11 10 Spencer None None None None
898 758854675097526272 NaN NaN 2016-07-29 02:40:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lilli Bee &amp; Honey Bear. Unfortunately, they were both born with no eyes. So heckin sad. Both 11/10 https://t.co/4UrfOZhztW NaN NaN NaN https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1 11 10 Lilli None None None None
899 758828659922702336 NaN NaN 2016-07-29 00:57:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af https://t.co/9T2h14yn4Q NaN NaN NaN https://twitter.com/dog_rates/status/758828659922702336/photo/1 13 10 None doggo None None None
900 758740312047005698 NaN NaN 2016-07-28 19:06:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Boston. He's worried because his tongue won't fit all the way in his mouth. 12/10 it'll be ok deep breaths pup https://t.co/rfWQ4T9iQj NaN NaN NaN https://twitter.com/dog_rates/status/758740312047005698/photo/1 12 10 Boston None None None None
901 758474966123810816 NaN NaN 2016-07-28 01:31:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brandonald. He accidentally opened the front facing camera. Playing it off rather heckin well. 11/10 https://t.co/uPUAotqQtM NaN NaN NaN https://twitter.com/dog_rates/status/758474966123810816/photo/1 11 10 Brandonald None None None None
902 758467244762497024 NaN NaN 2016-07-28 01:00:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE NaN NaN NaN https://twitter.com/dog_rates/status/758467244762497024/video/1 165 150 None None None None None
903 758405701903519748 NaN NaN 2016-07-27 20:56:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Odie. He falls asleep wherever he wants. Must be nice. 10/10 https://t.co/M9BXCSDVjh NaN NaN NaN https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1 10 10 Odie None None None None
904 758355060040593408 NaN NaN 2016-07-27 17:35:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Corey. He's a Portobello Corgicool. Trying to convince you that he's not a hipster. 11/10 yea right Corey https://t.co/NzWUrFZydr NaN NaN NaN https://twitter.com/dog_rates/status/758355060040593408/photo/1 11 10 Corey None None None None
905 758099635764359168 NaN NaN 2016-07-27 00:40:12 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE NaN NaN NaN https://vine.co/v/hQJbaj1VpIz 13 10 None None None None None
906 758041019896193024 NaN NaN 2016-07-26 20:47:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 https://t.co/l46jwv5WYv NaN NaN NaN https://twitter.com/dog_rates/status/758041019896193024/photo/1 9 10 None None None None None
907 757741869644341248 NaN NaN 2016-07-26 00:58:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Leonard. He hides in bushes to escape his problems. 10/10 relatable af https://t.co/TdyGTcX0uo NaN NaN NaN https://twitter.com/dog_rates/status/757741869644341248/photo/1,https://twitter.com/dog_rates/status/757741869644341248/photo/1 10 10 Leonard None None None None
908 757729163776290825 NaN NaN 2016-07-26 00:08:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 6.790626e+17 4.196984e+09 2015-12-21 22:15:18 +0000 https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1 11 10 Chompsky None None None None
909 757725642876129280 NaN NaN 2016-07-25 23:54:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Beckham. He fell asleep at the wheel. Very churlish. Looks to have a backpup driver tho. That's good. 11/10 https://t.co/rptsOm73Wr NaN NaN NaN https://twitter.com/dog_rates/status/757725642876129280/photo/1,https://twitter.com/dog_rates/status/757725642876129280/photo/1 11 10 Beckham None None None None
910 757611664640446465 NaN NaN 2016-07-25 16:21:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cooper. He tries to come across as feisty but it never works for very long. 12/10 https://t.co/AVks8DjHwB NaN NaN NaN https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1 12 10 Cooper None None None None
911 757597904299253760 NaN NaN 2016-07-25 15:26:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @jon_hill987: @dog_rates There is a cunningly disguised pupper here mate! 11/10 at least. https://t.co/7boff8zojZ 7.575971e+17 2.804798e+08 2016-07-25 15:23:28 +0000 https://twitter.com/jon_hill987/status/757597141099548672/photo/1,https://twitter.com/jon_hill987/status/757597141099548672/photo/1 11 10 None None None pupper None
912 757596066325864448 NaN NaN 2016-07-25 15:19:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug https://t.co/mOmnL19Wsl NaN NaN NaN https://twitter.com/dog_rates/status/757596066325864448/photo/1 4 10 None None None None None
913 757400162377592832 NaN NaN 2016-07-25 02:20:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> She walks herself up and down the train to be petted by all the passengers. 13/10 I can't handle this https://t.co/gwKCspY8N2 NaN NaN NaN https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1 13 10 None None None None None
914 757393109802180609 NaN NaN 2016-07-25 01:52:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him https://t.co/OfvRoD6ndV NaN NaN NaN https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1 10 10 None doggo None None None
915 757354760399941633 NaN NaN 2016-07-24 23:20:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 https://t.co/7waRPODGyO NaN NaN NaN https://twitter.com/dog_rates/status/757354760399941633/photo/1,https://twitter.com/dog_rates/status/757354760399941633/photo/1 8 10 Devón None None None None
916 756998049151549440 NaN NaN 2016-07-23 23:42:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliver. He's an English Creamschnitzel. The rarest of schnitzels. 11/10 would pet quite firmly https://t.co/qbO5X6dYuj NaN NaN NaN https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1 11 10 Oliver None None None None
917 756939218950160384 NaN NaN 2016-07-23 19:49:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jax. He is a majestic mountain pupper. Thinks flat ground is for the weak. 12/10 would totally hike with https://t.co/KGdeHuFJnH NaN NaN NaN https://twitter.com/dog_rates/status/756939218950160384/photo/1 12 10 Jax None None pupper None
918 756651752796094464 NaN NaN 2016-07-23 00:46:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gert. He just wants you to be happy. 11/10 would pat on the head so damn well https://t.co/l0Iwj6rLFW NaN NaN NaN https://twitter.com/dog_rates/status/756651752796094464/photo/1 11 10 Gert None None None None
919 756526248105566208 NaN NaN 2016-07-22 16:28:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> All hail sky doggo. 13/10 would jump super high to pet https://t.co/CsLRpqdeTF NaN NaN NaN https://twitter.com/dog_rates/status/756526248105566208/photo/1 13 10 None doggo None None None
920 756303284449767430 NaN NaN 2016-07-22 01:42:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Pwease accept dis rose on behalf of dog. 11/10 https://t.co/az5BVcIV5I NaN NaN NaN https://twitter.com/dog_rates/status/756303284449767430/photo/1 11 10 None None None None None
921 756288534030475264 NaN NaN 2016-07-22 00:43:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://t.co/hfddJ0OiNR NaN NaN NaN https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1 12 10 None None None None None
922 756275833623502848 NaN NaN 2016-07-21 23:53:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 https://t.co/JrDAzMhwG9 NaN NaN NaN https://twitter.com/dog_rates/status/756275833623502848/photo/1,https://twitter.com/dog_rates/status/756275833623502848/photo/1 10 10 None None None None puppo
923 755955933503782912 NaN NaN 2016-07-21 02:41:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 https://t.co/GAYViEweWr NaN NaN NaN https://twitter.com/dog_rates/status/755955933503782912/video/1 12 10 None None None pupper None
924 755206590534418437 NaN NaN 2016-07-19 01:04:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is one of the most inspirational stories I've ever come across. I have no words. 14/10 for both doggo and owner https://t.co/I5ld3eKD5k NaN NaN NaN https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1 14 10 one doggo None None None
925 755110668769038337 NaN NaN 2016-07-18 18:43:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Watson. He trust falls on command. 13/10 it's elementary... (IG: wat.ki) https://t.co/goX3jewkYN NaN NaN NaN https://twitter.com/dog_rates/status/755110668769038337/video/1 13 10 Watson None None None None
926 754874841593970688 NaN NaN 2016-07-18 03:06:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag 6.791584e+17 4.196984e+09 2015-12-22 04:35:49 +0000 https://twitter.com/dog_rates/status/679158373988876288/photo/1,https://twitter.com/dog_rates/status/679158373988876288/photo/1 11 10 Rubio None None None None
927 754856583969079297 NaN NaN 2016-07-18 01:53:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Winnie. She's not a fan of the fast moving air. 11/10 objects in mirror may be more fluffy than they appear https://t.co/FyHrk20gUR NaN NaN NaN https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1 11 10 Winnie None None None None
928 754747087846248448 NaN NaN 2016-07-17 18:38:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Keith. He's pursuing a more 2D lifestyle. Idiosyncratic af. 12/10 follow your dreams Keith https://t.co/G9ufksBMlU NaN NaN NaN https://twitter.com/dog_rates/status/754747087846248448/photo/1 12 10 Keith None None None None
929 754482103782404096 NaN NaN 2016-07-17 01:05:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Milo. He's currently plotting his revenge. 10/10 https://t.co/ca0q9HM8II NaN NaN NaN https://twitter.com/dog_rates/status/754482103782404096/video/1 10 10 Milo None None None None
930 754449512966619136 NaN NaN 2016-07-16 22:55:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dex. He can see into your past and future. Mesmerizing af 11/10 https://t.co/0dYI0Cpdge NaN NaN NaN https://twitter.com/dog_rates/status/754449512966619136/photo/1 11 10 Dex None None None None
931 754120377874386944 NaN NaN 2016-07-16 01:08:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 https://t.co/lFEoGqZ4oA NaN NaN NaN https://twitter.com/dog_rates/status/754120377874386944/photo/1 10 10 None None None None None
932 754011816964026368 NaN NaN 2016-07-15 17:56:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charlie. He pouts until he gets to go on the swing. 12/10 manipulative af https://t.co/ilwQqWFKCh NaN NaN NaN https://twitter.com/dog_rates/status/754011816964026368/photo/1,https://twitter.com/dog_rates/status/754011816964026368/photo/1 12 10 Charlie None None None None
933 753655901052166144 NaN NaN 2016-07-14 18:22:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 https://t.co/ULqThwWmLg NaN NaN NaN https://twitter.com/dog_rates/status/753655901052166144/photo/1 10 10 None None None None None
934 753420520834629632 NaN NaN 2016-07-14 02:47:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we are witnessing an isolated squad of bouncing doggos. Unbelievably rare for this time of year. 11/10 for all https://t.co/CCdlwiTwQf NaN NaN NaN https://twitter.com/dog_rates/status/753420520834629632/video/1 11 10 None None None None None
935 753398408988139520 NaN NaN 2016-07-14 01:19:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Scout. Her batteries are low. 12/10 precious af https://t.co/ov05LIoQJX NaN NaN NaN https://twitter.com/dog_rates/status/753398408988139520/video/1 12 10 Scout None None None None
936 753375668877008896 NaN NaN 2016-07-13 23:48:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc NaN NaN NaN https://twitter.com/dog_rates/status/753375668877008896/photo/1 8 10 Hank None None None None
937 753298634498793472 NaN NaN 2016-07-13 18:42:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https:/… 6.815232e+17 4.196984e+09 2015-12-28 17:12:42 +0000 https://twitter.com/dog_rates/status/681523177663676416/photo/1 12 10 Carly None None None None
938 753294487569522689 NaN NaN 2016-07-13 18:26:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ace. He's a window washer. One of the best around. 11/10 helpful af https://t.co/sTuRoYfzPv NaN NaN NaN https://twitter.com/dog_rates/status/753294487569522689/photo/1 11 10 Ace None None None None
939 753039830821511168 NaN NaN 2016-07-13 01:34:21 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 NaN NaN NaN https://vine.co/v/5W2Dg3XPX7a 13 10 None None None None None
940 753026973505581056 NaN NaN 2016-07-13 00:43:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Tayzie. She's a Barbadian Bugaboop. Seems quite social. A rare quality for a Bugaboop. 10/10 petable af https://t.co/6qF5YZx6OV NaN NaN NaN https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1 10 10 Tayzie None None None None
941 752932432744185856 NaN NaN 2016-07-12 18:27:35 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc NaN NaN NaN https://vine.co/v/OEppMFbejFz 12 10 Carl None None None None
942 752917284578922496 NaN NaN 2016-07-12 17:27:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Grizzie. She's a semi-submerged Bahraini Buttersplotch. Appears alert af. Snazzy tongue. 11/10 would def pet https://t.co/WZ4zzkXXnW NaN NaN NaN https://twitter.com/dog_rates/status/752917284578922496/photo/1 11 10 Grizzie None None None None
943 752701944171524096 NaN NaN 2016-07-12 03:11:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z 6.835159e+17 4.196984e+09 2016-01-03 05:11:12 +0000 https://vine.co/v/ibvnzrauFuV,https://vine.co/v/ibvnzrauFuV 11 10 None None None None None
944 752682090207055872 NaN NaN 2016-07-12 01:52:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Nothing better than a doggo and a sunset. 10/10 majestic af https://t.co/xVSodF19PS NaN NaN NaN https://twitter.com/dog_rates/status/752682090207055872/photo/1,https://twitter.com/dog_rates/status/752682090207055872/photo/1 10 10 None doggo None None None
945 752660715232722944 NaN NaN 2016-07-12 00:27:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 https://t.co/bWSgqnwSHr NaN NaN NaN https://twitter.com/dog_rates/status/752660715232722944/photo/1,https://twitter.com/dog_rates/status/752660715232722944/photo/1 10 10 None doggo None None None
946 752568224206688256 NaN NaN 2016-07-11 18:20:21 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Here are three doggos completely misjudging an airborne stick. Decent efforts tho. All 9/10 https://t.co/HCXQL4fGVZ NaN NaN NaN https://vine.co/v/5W0bdhEUUVT 9 10 None None None None None
947 752519690950500352 NaN NaN 2016-07-11 15:07:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Hopefully this puppo on a swing will help get you through your Monday. 11/10 would push https://t.co/G54yClasz2 NaN NaN NaN https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1 11 10 None None None None puppo
948 752334515931054080 NaN NaN 2016-07-11 02:51:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) https://t.co/jwd0j6oWLE NaN NaN NaN https://twitter.com/dog_rates/status/752334515931054080/video/1 8 10 None doggo None None None
949 752309394570878976 NaN NaN 2016-07-11 01:11:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC 6.753544e+17 4.196984e+09 2015-12-11 16:40:19 +0000 https://twitter.com/dog_rates/status/675354435921575936/video/1,https://twitter.com/dog_rates/status/675354435921575936/video/1 13 10 None None None None None
950 752173152931807232 NaN NaN 2016-07-10 16:10:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brody. He's a lifeguard. Always prepared for rescue. 12/10 would fake drown just to get saved by him https://t.co/olDmwNjOy1 NaN NaN NaN https://twitter.com/dog_rates/status/752173152931807232/photo/1,https://twitter.com/dog_rates/status/752173152931807232/photo/1 12 10 Brody None None None None
951 751950017322246144 NaN NaN 2016-07-10 01:23:49 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Lola. She's a surfing pupper. 13/10 magical af https://t.co/BlGQkhM5EV NaN NaN NaN https://vine.co/v/5WrjaYAMvMO 13 10 Lola None None pupper None
952 751937170840121344 NaN NaN 2016-07-10 00:32:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ruby. Her ice cube is melting. She doesn't know what to do about it. 11/10 https://t.co/Vfc3eAFl2q NaN NaN NaN https://twitter.com/dog_rates/status/751937170840121344/photo/1 11 10 Ruby None None None None
953 751830394383790080 NaN NaN 2016-07-09 17:28:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tucker. He's very camera shy. 12/10 would give stellar belly rubs to https://t.co/BJRsxuLF1w NaN NaN NaN https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1 12 10 Tucker None None None None
954 751793661361422336 NaN NaN 2016-07-09 15:02:31 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Fred. He's having one heck of a summer. 11/10 https://t.co/I7SFchkNk4 NaN NaN NaN https://vine.co/v/5W5YHdTJvaV 11 10 Fred None None None None
955 751598357617971201 NaN NaN 2016-07-09 02:06:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Toby. A cat got his tongue. 13/10 adorable af https://t.co/fHQrBKYSLC NaN NaN NaN https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1 13 10 Toby None None None None
956 751583847268179968 NaN NaN 2016-07-09 01:08:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 NaN NaN NaN https://twitter.com/dog_rates/status/751583847268179968/photo/1 5 10 None doggo None pupper None
957 751538714308972544 NaN NaN 2016-07-08 22:09:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Max. She has one ear that's always slightly more alert than the other. 10/10 wonky af https://t.co/5eJg69G8vY NaN NaN NaN https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1 10 10 Max None None None None
958 751456908746354688 NaN NaN 2016-07-08 16:44:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) https://t.co/lsVAMBq6ex NaN NaN NaN https://twitter.com/dog_rates/status/751456908746354688/video/1 12 10 None None None pupper None
959 751251247299190784 NaN NaN 2016-07-08 03:07:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gilbert. He's being chased by a battalion of miniature floof cows. 10/10 we all believe in you Gilbert https://t.co/wayKZkDRTG NaN NaN NaN https://twitter.com/dog_rates/status/751251247299190784/video/1 10 10 Gilbert None None None None
960 751205363882532864 NaN NaN 2016-07-08 00:04:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 https://t.co/510gJW9fsy NaN NaN NaN https://twitter.com/dog_rates/status/751205363882532864/photo/1,https://twitter.com/dog_rates/status/751205363882532864/photo/1 12 10 None None None None None
961 751132876104687617 NaN NaN 2016-07-07 19:16:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cooper. He's just so damn happy. 10/10 what's your secret puppo? https://t.co/yToDwVXEpA NaN NaN NaN https://twitter.com/dog_rates/status/751132876104687617/photo/1,https://twitter.com/dog_rates/status/751132876104687617/photo/1 10 10 Cooper None None None puppo
962 750868782890057730 NaN NaN 2016-07-07 01:47:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Milo. He hauled ass until he ran out of treadmill and then passed out from exhaustion. 11/10 sleep tight pupper https://t.co/xe1aGZNkcC NaN NaN NaN https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1 11 10 Milo None None pupper None
963 750719632563142656 NaN NaN 2016-07-06 15:54:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t.co/WS6BoApYyL NaN NaN NaN https://twitter.com/dog_rates/status/750719632563142656/photo/1 12 10 Meyer None None None None
964 750506206503038976 NaN NaN 2016-07-06 01:46:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Malcolm. He's absolutely terrified of heights. 8/10 hang in there pupper https://t.co/SVU00Sc9U2 NaN NaN NaN https://twitter.com/dog_rates/status/750506206503038976/photo/1 8 10 Malcolm None None pupper None
965 750429297815552001 NaN NaN 2016-07-05 20:41:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS NaN NaN NaN https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1 12 10 Arnie None None None None
966 750383411068534784 NaN NaN 2016-07-05 17:38:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper https://t.co/FfH3o88Vta NaN NaN NaN https://twitter.com/dog_rates/status/750383411068534784/photo/1 9 10 Zoe None None pupper None
967 750381685133418496 7.501805e+17 4.717297e+09 2016-07-05 17:31:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 13/10 such a good doggo\n@spaghemily NaN NaN NaN NaN 13 10 None doggo None None None
968 750147208377409536 NaN NaN 2016-07-05 02:00:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> And finally, happy 4th of July from the squad 🇺🇸 13/10 for all https://t.co/Mr8Lr3iOUe NaN NaN NaN https://twitter.com/dog_rates/status/750147208377409536/photo/1 13 10 None None None None None
969 750132105863102464 NaN NaN 2016-07-05 01:00:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stewie. He will roundhouse kick anyone who questions his independence. 11/10 free af https://t.co/dDx2gKefYo NaN NaN NaN https://twitter.com/dog_rates/status/750132105863102464/photo/1 11 10 Stewie None None None None
970 750117059602808832 NaN NaN 2016-07-05 00:00:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Calvin. He just loves America so much. 10/10 would roll around in flag with https://t.co/RXdzWaCQHm NaN NaN NaN https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1 10 10 Calvin None None None None
971 750101899009982464 NaN NaN 2016-07-04 23:00:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Lilah. She agreed on one quick pic. Now she'd like to go mentally prepare for the onslaught of fireworks. 11/10 https://t.co/enCpXzZHkD NaN NaN NaN https://twitter.com/dog_rates/status/750101899009982464/photo/1,https://twitter.com/dog_rates/status/750101899009982464/photo/1 11 10 Lilah None None None None
972 750086836815486976 NaN NaN 2016-07-04 22:00:12 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> This is Spanky. He was a member of the 2002 USA Winter Olympic speed skating team. Accomplished af. 12/10 https://t.co/7tlZPrePXd NaN NaN NaN https://twitter.com/dog_rates/status/750086836815486976/photo/1 12 10 Spanky None None None None
973 750071704093859840 NaN NaN 2016-07-04 21:00:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Pause your cookout and admire this pupper's nifty hat. 10/10 https://t.co/RG4C9IdNJM NaN NaN NaN https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1 10 10 None None None pupper None
974 750056684286914561 NaN NaN 2016-07-04 20:00:23 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> This is Jameson. He had a few too many in the name of freedom. I can't not respect that. 11/10 'Merica https://t.co/8zQvXM6pG5 NaN NaN NaN https://twitter.com/dog_rates/status/750056684286914561/photo/1 11 10 Jameson None None None None
975 750041628174217216 NaN NaN 2016-07-04 19:00:33 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> This is Beau. He's trying to keep his daddy from packing to leave for Annual Training. 13/10 and now I'm crying https://t.co/7JeDfQvzzI NaN NaN NaN https://twitter.com/dog_rates/status/750041628174217216/photo/1 13 10 Beau None None None None
976 750026558547456000 NaN NaN 2016-07-04 18:00:41 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> Meet Jax &amp; Jil. Jil is yelling the pledge of allegiance. If u cant take the freedom get out the kitchen Jax. 10/10s https://t.co/jrg29NDNhI NaN NaN NaN https://twitter.com/dog_rates/status/750026558547456000/photo/1 10 10 Jax None None None None
977 750011400160841729 NaN NaN 2016-07-04 17:00:26 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> Meet Piper. She's an airport doggo. Please return your tray table to its full pupright and locked position. 11/10 https://t.co/D17IAcetmM NaN NaN NaN https://twitter.com/dog_rates/status/750011400160841729/photo/1 11 10 Piper doggo None None None
978 749996283729883136 NaN NaN 2016-07-04 16:00:22 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> This is Bo. He emanates happiness. 12/10 I could cut the freedom with a knife https://t.co/c7LNFt39eR NaN NaN NaN https://twitter.com/dog_rates/status/749996283729883136/photo/1 12 10 Bo None None None None
979 749981277374128128 NaN NaN 2016-07-04 15:00:45 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh NaN NaN NaN https://twitter.com/dog_rates/status/749981277374128128/photo/1 1776 10 Atticus None None None None
980 749774190421639168 NaN NaN 2016-07-04 01:17:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl NaN NaN NaN https://twitter.com/dog_rates/status/749774190421639168/photo/1 12 10 Lucy None None None None
981 749417653287129088 NaN NaN 2016-07-03 01:41:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Finn. He's the most unphotogenic pupper of all time. 11/10 https://t.co/qvA2rCUl6v NaN NaN NaN https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1 11 10 Finn None None pupper None
982 749403093750648834 NaN NaN 2016-07-03 00:43:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx NaN NaN NaN https://twitter.com/dog_rates/status/749403093750648834/photo/1 10 10 None None None None None
983 749395845976588288 NaN NaN 2016-07-03 00:14:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is George. He just remembered that bees are dying globally at an alarming rate. Scary stuff George. 10/10 https://t.co/lznl6QGkYc NaN NaN NaN https://twitter.com/dog_rates/status/749395845976588288/photo/1,https://twitter.com/dog_rates/status/749395845976588288/photo/1 10 10 George None None None None
984 749317047558017024 NaN NaN 2016-07-02 19:01:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Blu. He's a wild bush Floofer. I wish anything made me as happy as bushes make Blu. 12/10 would frolic with https://t.co/HHUAnBb6QB NaN NaN NaN https://twitter.com/dog_rates/status/749317047558017024/video/1 12 10 Blu None floofer None None
985 749075273010798592 NaN NaN 2016-07-02 03:00:36 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Boomer. He's self-baptizing. Other doggo not ready to renounce sins. 11/10 spiritually awakened af https://t.co/cRTJiQQk9o NaN NaN NaN https://vine.co/v/5ztZvHgI17r 11 10 Boomer doggo None None None
986 749064354620928000 NaN NaN 2016-07-02 02:17:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Winston. He's pupset because I forgot to mention that it's Canada Day today. 11/10 please forgive me Winston https://t.co/xEY8dbJxnF NaN NaN NaN https://twitter.com/dog_rates/status/749064354620928000/photo/1,https://twitter.com/dog_rates/status/749064354620928000/photo/1 11 10 Winston None None None None
987 749036806121881602 NaN NaN 2016-07-02 00:27:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dietrich. He hops at random. Other doggos don't understand him. It upsets him greatly. 8/10 would comfort https://t.co/U8cSRz8wzC NaN NaN NaN https://twitter.com/dog_rates/status/749036806121881602/photo/1 8 10 Dietrich None None None None
988 748977405889503236 NaN NaN 2016-07-01 20:31:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX NaN NaN NaN https://twitter.com/dog_rates/status/748977405889503236/photo/1 10 10 not None None None None
989 748932637671223296 NaN NaN 2016-07-01 17:33:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Divine Doggo. Must be magical af. 13/10 would be an honor to pet https://t.co/BbcABzohKb NaN NaN NaN https://twitter.com/dog_rates/status/748932637671223296/photo/1 13 10 Divine doggo None None None
990 748705597323898880 NaN NaN 2016-07-01 02:31:39 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> #BarkWeek is getting rather heckin terrifying over here. Doin me quite the spooken. 13/10 (vid by @corgi_zero) https://t.co/eA7k1ZQslA NaN NaN NaN https://twitter.com/dog_rates/status/748705597323898880/video/1 13 10 None None None None None
991 748699167502000129 NaN NaN 2016-07-01 02:06:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Tripp. He's being eaten by a sherk and doesn't even care. Unfazed af. 11/10 keep doin you Tripp https://t.co/gGxjthmG1c NaN NaN NaN https://twitter.com/dog_rates/status/748699167502000129/photo/1,https://twitter.com/dog_rates/status/748699167502000129/photo/1 11 10 Tripp None None None None
992 748692773788876800 NaN NaN 2016-07-01 01:40:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> That is Quizno. This is his beach. He does not tolerate human shenanigans on his beach. 10/10 reclaim ur land doggo https://t.co/vdr7DaRSa7 NaN NaN NaN https://twitter.com/dog_rates/status/748692773788876800/photo/1 10 10 his doggo None None None
993 748575535303884801 NaN NaN 2016-06-30 17:54:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 https://t.co/z5bAdtn9kd NaN NaN NaN https://twitter.com/dog_rates/status/748575535303884801/photo/1 6 10 one None None None None
994 748568946752774144 NaN NaN 2016-06-30 17:28:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cora. She rings a bell for treats. 12/10 precious af (vid by @skyehellenkamp) https://t.co/uUncaAGH18 NaN NaN NaN https://twitter.com/dog_rates/status/748568946752774144/video/1 12 10 Cora None None None None
995 748346686624440324 NaN NaN 2016-06-30 02:45:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 https://t.co/XFBrrqapZa NaN NaN NaN https://twitter.com/dog_rates/status/748346686624440324/photo/1 10 10 None None None None None
996 748337862848962560 NaN NaN 2016-06-30 02:10:24 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek https://t.co/QGGhZoTcwy NaN NaN NaN https://vine.co/v/h5aDaFthX6O 13 10 None None None pupper None
997 748324050481647620 NaN NaN 2016-06-30 01:15:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Duke. He permanently looks like he just tripped over something. 11/10 https://t.co/1sNtG7GgiO NaN NaN NaN https://twitter.com/dog_rates/status/748324050481647620/photo/1,https://twitter.com/dog_rates/status/748324050481647620/photo/1 11 10 Duke None None None None
998 748307329658011649 NaN NaN 2016-06-30 00:09:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 https://t.co/KubWEqOIgO NaN NaN NaN https://twitter.com/dog_rates/status/748307329658011649/photo/1,https://twitter.com/dog_rates/status/748307329658011649/photo/1 7 10 None None None None None
999 748220828303695873 NaN NaN 2016-06-29 18:25:21 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Stop what you're doing and watch this heckin masterpiece right here. Both 13/10 https://t.co/3BOVI2WZoH NaN NaN NaN https://vine.co/v/iiLjKuYJpr6 13 10 None None None None None
1000 747963614829678593 NaN NaN 2016-06-29 01:23:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q NaN NaN NaN https://twitter.com/dog_rates/status/747963614829678593/photo/1 10 10 None None None pupper None
1001 747933425676525569 NaN NaN 2016-06-28 23:23:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 https://t.co/oQqlOsla4R NaN NaN NaN https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1 11 10 None None None None None
1002 747885874273214464 NaN NaN 2016-06-28 20:14:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW NaN NaN NaN https://twitter.com/dog_rates/status/747885874273214464/photo/1,https://twitter.com/dog_rates/status/747885874273214464/photo/1 8 10 a None None None None
1003 747844099428986880 NaN NaN 2016-06-28 17:28:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Huxley. He's pumped for #BarkWeek. Even has a hat. Ears are quite magical. 11/10 would remove hat to pat https://t.co/V7h5NMYbYz NaN NaN NaN https://twitter.com/dog_rates/status/747844099428986880/photo/1 11 10 Huxley None None None None
1004 747816857231626240 NaN NaN 2016-06-28 15:40:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R NaN NaN NaN https://twitter.com/dog_rates/status/747816857231626240/photo/1 4 10 a None None None None
1005 747651430853525504 7.476487e+17 4.196984e+09 2016-06-28 04:42:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Other pupper asked not to have his identity shared. Probably just embarrassed about the headbutt. Also 12/10 it'll be ok mystery pup NaN NaN NaN NaN 12 10 None None None pupper None
1006 747648653817413632 NaN NaN 2016-06-28 04:31:44 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Keurig. He apparently headbutts other dogs to greet them. Not cool Keurig. So fluffy tho 12/10 https://t.co/zexdr61Q5M NaN NaN NaN https://vine.co/v/iqIZFtOxEMB 12 10 Keurig None None None None
1007 747600769478692864 NaN NaN 2016-06-28 01:21:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bookstore and Seaweed. Bookstore is tired and Seaweed is an asshole. 10/10 and 7/10 respectively https://t.co/eUGjGjjFVJ NaN NaN NaN https://twitter.com/dog_rates/status/747600769478692864/photo/1,https://twitter.com/dog_rates/status/747600769478692864/photo/1 10 10 Bookstore None None None None
1008 747594051852075008 NaN NaN 2016-06-28 00:54:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 https://t.co/Ie2mWXWjpr NaN NaN NaN https://twitter.com/dog_rates/status/747594051852075008/photo/1 11 10 None None None None None
1009 747512671126323200 NaN NaN 2016-06-27 19:31:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 https://t.co/12lICZN2SP NaN NaN NaN https://twitter.com/dog_rates/status/747512671126323200/photo/1 10 10 None None None None None
1010 747461612269887489 NaN NaN 2016-06-27 16:08:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Never seen a shark hold another shark like this before. Must be evolving. Both 10/10 please only send dogs though https://t.co/x4IUNKV79Y NaN NaN NaN https://twitter.com/dog_rates/status/747461612269887489/photo/1 10 10 None None None None None
1011 747439450712596480 NaN NaN 2016-06-27 14:40:26 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Linus. He just wanted to say hello but no one's paying attention. 12/10 (vid by @rebeccacollinzz) https://t.co/VCijm2eVpR NaN NaN NaN https://vine.co/v/5uTVXWvn3Ip 12 10 Linus None None None None
1012 747242308580548608 NaN NaN 2016-06-27 01:37:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://… 7.047611e+17 4.196984e+09 2016-03-01 20:11:59 +0000 https://twitter.com/dog_rates/status/704761120771465216/photo/1,https://twitter.com/dog_rates/status/704761120771465216/photo/1 13 10 None None None pupper None
1013 747219827526344708 NaN NaN 2016-06-27 00:07:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Atticus. He's remaining calm but his costume looks terrified. 11/10 https://t.co/uT7QeZI34U NaN NaN NaN https://twitter.com/dog_rates/status/747219827526344708/photo/1,https://twitter.com/dog_rates/status/747219827526344708/photo/1 11 10 Atticus None None None None
1014 747204161125646336 NaN NaN 2016-06-26 23:05:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Clark. He's deadly af. Clearly part shark (see pic 2). 10/10 would totally still try to pet https://t.co/dmdEBOEctC NaN NaN NaN https://twitter.com/dog_rates/status/747204161125646336/photo/1,https://twitter.com/dog_rates/status/747204161125646336/photo/1 10 10 Clark None None None None
1015 747103485104099331 NaN NaN 2016-06-26 16:25:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 https://t.co/DX1JUHJVN7 NaN NaN NaN https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1 11 10 None None None None None
1016 746906459439529985 7.468859e+17 4.196984e+09 2016-06-26 03:22:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX NaN NaN NaN https://twitter.com/dog_rates/status/746906459439529985/photo/1 0 10 None None None None None
1017 746872823977771008 NaN NaN 2016-06-26 01:08:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 NaN NaN NaN https://twitter.com/dog_rates/status/746872823977771008/photo/1,https://twitter.com/dog_rates/status/746872823977771008/photo/1 11 10 a None None None None
1018 746818907684614144 6.914169e+17 4.196984e+09 2016-06-25 21:34:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys... Dog Jesus 2.0\n13/10 buoyant af https://t.co/CuNA7OwfKQ NaN NaN NaN https://twitter.com/dog_rates/status/746818907684614144/photo/1 13 10 None None None None None
1019 746790600704425984 NaN NaN 2016-06-25 19:42:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you just can't resist... 10/10 topnotch tongue https://t.co/jeWEGUgbXf NaN NaN NaN https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1 10 10 None None None None None
1020 746757706116112384 NaN NaN 2016-06-25 17:31:25 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u NaN NaN NaN https://vine.co/v/5BYq6hmrEI3 11 10 Maddie None None None None
1021 746726898085036033 NaN NaN 2016-06-25 15:29:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Abby. She's incredibly distracting. Just wants to help steer. Hazardous af. Still 12/10 would pet while driving https://t.co/gLbLiZtwsp NaN NaN NaN https://twitter.com/dog_rates/status/746726898085036033/photo/1 12 10 Abby None None None None
1022 746542875601690625 NaN NaN 2016-06-25 03:17:46 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Here's a golden floofer helping with the groceries. Bed got in way. Still 11/10 helpful af (vid by @categoen) https://t.co/6ZRoZUWFmd NaN NaN NaN https://vine.co/v/5uZYwqmuDeT 11 10 None None floofer None None
1023 746521445350707200 NaN NaN 2016-06-25 01:52:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https:/… 6.678667e+17 4.196984e+09 2015-11-21 00:46:50 +0000 https://twitter.com/dog_rates/status/667866724293877760/photo/1 10 10 Shaggy None None None None
1024 746507379341139972 NaN NaN 2016-06-25 00:56:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shiloh. She did not pass the soft mouth egg test. 10/10 would absolutely still pet https://t.co/PlR6hjqvr5 NaN NaN NaN https://twitter.com/dog_rates/status/746507379341139972/photo/1,https://twitter.com/dog_rates/status/746507379341139972/photo/1 10 10 Shiloh None None None None
1025 746369468511756288 NaN NaN 2016-06-24 15:48:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt NaN NaN NaN https://twitter.com/dog_rates/status/746369468511756288/photo/1 9 10 an None None None None
1026 746131877086527488 NaN NaN 2016-06-24 00:04:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gustav. He has claimed that plant. It is his now. 10/10 would not try to take his plant away https://t.co/uRI7HBgGJX NaN NaN NaN https://twitter.com/dog_rates/status/746131877086527488/photo/1 10 10 Gustav None None None None
1027 746056683365994496 NaN NaN 2016-06-23 19:05:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Arlen and Thumpelina. They are best pals. Cuddly af. 11/10 for both puppers https://t.co/VJgbgIzIHx NaN NaN NaN https://twitter.com/dog_rates/status/746056683365994496/photo/1,https://twitter.com/dog_rates/status/746056683365994496/photo/1 11 10 Arlen None None None None
1028 745789745784041472 NaN NaN 2016-06-23 01:25:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gus. He didn't win the Powerball. Quite perturbed about it. Still 10/10 would comfort in time of need https://t.co/3wc246LOtu NaN NaN NaN https://twitter.com/dog_rates/status/745789745784041472/photo/1 10 10 Gus None None None None
1029 745712589599014916 NaN NaN 2016-06-22 20:18:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Percy. He fell asleep at the wheel. Irresponsible af. 7/10 absolute menace on the roadway https://t.co/QHbvtvaw8E NaN NaN NaN https://twitter.com/dog_rates/status/745712589599014916/photo/1 7 10 Percy None None None None
1030 745433870967832576 NaN NaN 2016-06-22 01:50:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lenox. She's in a wheelbarrow. Silly doggo. You don't belong there. 10/10 would push around https://t.co/oYbVR4nBsR NaN NaN NaN https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1 10 10 Lenox doggo None None None
1031 745422732645535745 NaN NaN 2016-06-22 01:06:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ NaN NaN NaN https://twitter.com/dog_rates/status/745422732645535745/photo/1 9 10 very None None None None
1032 745314880350101504 NaN NaN 2016-06-21 17:58:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sugar. She excels underwater. 12/10 photogenic af https://t.co/AWMeXJJz64 NaN NaN NaN https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1 12 10 Sugar None None None None
1033 745074613265149952 NaN NaN 2016-06-21 02:03:25 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Jeffrey. He wasn't prepared to execute such advanced barkour. Still 11/10 would totally pet https://t.co/MuuwkkLrHh NaN NaN NaN https://vine.co/v/iQm3JAXuFmv 11 10 Jeffrey None None None None
1034 745057283344719872 NaN NaN 2016-06-21 00:54:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliver. He's downright gorgeous as hell. Should be on the cover of Dogue. 12/10 would introduce to mom https://t.co/BkgU3rrsXA NaN NaN NaN https://twitter.com/dog_rates/status/745057283344719872/photo/1,https://twitter.com/dog_rates/status/745057283344719872/photo/1 12 10 Oliver None None None None
1035 744995568523612160 NaN NaN 2016-06-20 20:49:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo https://t.co/2FPb45NXrK NaN NaN NaN https://twitter.com/dog_rates/status/744995568523612160/photo/1,https://twitter.com/dog_rates/status/744995568523612160/photo/1 9 10 Abby None None None puppo
1036 744971049620602880 NaN NaN 2016-06-20 19:11:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Indie and Jupiter. They're having a stellar day out on the boat. Both 12/10 adorbz af https://t.co/KgSEkrPA3r NaN NaN NaN https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1 12 10 Indie None None None None
1037 744709971296780288 NaN NaN 2016-06-20 01:54:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Harvey. He's stealthy af. 10/10 would do my best to pet https://t.co/zAzaRT6NnT NaN NaN NaN https://twitter.com/dog_rates/status/744709971296780288/photo/1 10 10 Harvey None None None None
1038 744334592493166593 NaN NaN 2016-06-19 01:02:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Blanket. She has overthrown her human. Demands walks like this every hour on the hour. 11/10 so damn fluffy https://t.co/hrJugNHs2Z NaN NaN NaN https://twitter.com/dog_rates/status/744334592493166593/photo/1 11 10 Blanket None None None None
1039 744234799360020481 NaN NaN 2016-06-18 18:26:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) https://t.co/7wE9LTEXC4 NaN NaN NaN https://twitter.com/dog_rates/status/744234799360020481/video/1 13 10 None doggo None None None
1040 744223424764059648 NaN NaN 2016-06-18 17:41:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is actually a pupper and I'd pet it so well. 12/10\nhttps://t.co/RNqS7C4Y4N NaN NaN NaN https://twitter.com/strange_animals/status/672108316018024452 12 10 actually None None pupper None
1041 743980027717509120 NaN NaN 2016-06-18 01:33:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Geno. He's a Wrinkled Baklavian Velveeta. Looks sad but that's just the extra skin. 11/10 would smoosh face https://t.co/Kxda28JmQ2 NaN NaN NaN https://twitter.com/dog_rates/status/743980027717509120/photo/1 11 10 Geno None None None None
1042 743895849529389061 NaN NaN 2016-06-17 19:59:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 https://t.co/gCCrY8P0K9 NaN NaN NaN https://twitter.com/dog_rates/status/743895849529389061/photo/1 10 10 None None None None None
1043 743835915802583040 NaN NaN 2016-06-17 16:01:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0Dv… 6.671383e+17 4.196984e+09 2015-11-19 00:32:12 +0000 https://twitter.com/dog_rates/status/667138269671505920/photo/1 10 10 None None None None None
1044 743609206067040256 NaN NaN 2016-06-17 01:00:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA NaN NaN NaN https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1 10 10 Stark None None None None
1045 743595368194129920 NaN NaN 2016-06-17 00:05:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Harold. He looks slippery af. Probably difficult to hug. Would still try tho. 7/10 great with kids I bet https://t.co/EVuqdEO66N NaN NaN NaN https://twitter.com/dog_rates/status/743595368194129920/photo/1 7 10 Harold None None None None
1046 743545585370791937 NaN NaN 2016-06-16 20:47:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Bentley and Millie. They do everything together. Besties forever. Both 11/10 https://t.co/vU3tKr4vTn NaN NaN NaN https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1 11 10 Bentley None None None None
1047 743510151680958465 NaN NaN 2016-06-16 18:26:48 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Beya. She doesn't want to swim, so she's not going to. 13/10 nonconforming af (vid by @HappyTailsResor) https://t.co/qGeVjHSUKH NaN NaN NaN https://twitter.com/dog_rates/status/743510151680958465/video/1 13 10 Beya None None None None
1048 743253157753532416 NaN NaN 2016-06-16 01:25:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kilo. He cannot reach the snackum. Nifty tongue, but not nifty enough. 10/10 maybe one day puppo https://t.co/gSmp31Zrsx NaN NaN NaN https://twitter.com/dog_rates/status/743253157753532416/photo/1 10 10 Kilo None None None puppo
1049 743222593470234624 NaN NaN 2016-06-15 23:24:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa NaN NaN NaN https://twitter.com/dog_rates/status/743222593470234624/photo/1 12 10 a None None pupper None
1050 743210557239623680 NaN NaN 2016-06-15 22:36:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Kayla, an underground poker legend. Players lose on purpose hoping she'll let them pet her. 10/10 strategic af https://t.co/EkLku795aO NaN NaN NaN https://twitter.com/dog_rates/status/743210557239623680/photo/1 10 10 Kayla None None None None
1051 742534281772302336 NaN NaN 2016-06-14 01:49:03 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> For anyone who's wondering, this is what happens after a doggo catches it's tail... 11/10 https://t.co/G4fNhzelDv NaN NaN NaN https://vine.co/v/iLTZmtE1FTB 11 10 None doggo None None None
1052 742528092657332225 NaN NaN 2016-06-14 01:24:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Maxaroni. He's pumped as hell for the summer. Been working on his beach bod for so long. 10/10 https://t.co/UHvjxm9B0O NaN NaN NaN https://twitter.com/dog_rates/status/742528092657332225/photo/1,https://twitter.com/dog_rates/status/742528092657332225/photo/1 10 10 Maxaroni None None None None
1053 742465774154047488 NaN NaN 2016-06-13 21:16:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Was just informed about this hero pupper and others like her. Another 14/10, would be an absolute honor to pet https://t.co/hBTzPmj36Z NaN NaN NaN https://twitter.com/dog_rates/status/742465774154047488/photo/1,https://twitter.com/dog_rates/status/742465774154047488/photo/1 14 10 None None None pupper None
1054 742423170473463808 NaN NaN 2016-06-13 18:27:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b NaN NaN NaN https://twitter.com/dog_rates/status/742423170473463808/photo/1 12 10 Bell None None None None
1055 742385895052087300 NaN NaN 2016-06-13 15:59:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Phil. That's his comfort stick. He holds onto it whenever he's sad. 11/10 don't be sad Phil https://t.co/ULdPY6CLpq NaN NaN NaN https://twitter.com/dog_rates/status/742385895052087300/photo/1 11 10 Phil None None None None
1056 742161199639494656 NaN NaN 2016-06-13 01:06:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Doug. He's trying to float away. 12/10 you got this Doug https://t.co/bZaHC3lvTL NaN NaN NaN https://twitter.com/dog_rates/status/742161199639494656/photo/1 12 10 Doug None None None None
1057 742150209887731712 NaN NaN 2016-06-13 00:22:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper https://t.co/PprXoqZuKY NaN NaN NaN https://twitter.com/dog_rates/status/742150209887731712/photo/1 8 10 Edmund None None pupper None
1058 741793263812808706 NaN NaN 2016-06-12 00:44:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When your crush won't pay attention to you. Both 10/10 tragic af https://t.co/d3LELGVlqu NaN NaN NaN https://twitter.com/dog_rates/status/741793263812808706/photo/1,https://twitter.com/dog_rates/status/741793263812808706/photo/1 10 10 None None None None None
1059 741743634094141440 NaN NaN 2016-06-11 21:27:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Aqua. She's a sandy pupper. Not sure how she feels about being so sandy. Radical tongue slip. 11/10 petable af https://t.co/rYxJ0UQtbE NaN NaN NaN https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1 11 10 Aqua None None pupper None
1060 741438259667034112 NaN NaN 2016-06-11 01:13:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tucker. He's still figuring out couches. 9/10 keep your head up pup https://t.co/pXU77HPbJ5 NaN NaN NaN https://twitter.com/dog_rates/status/741438259667034112/photo/1 9 10 Tucker None None None None
1061 741303864243200000 NaN NaN 2016-06-10 16:19:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Theodore. He just saw an adult wearing crocs. Did him a frighten. Lost other ear back in nam. 12/10 hero af https://t.co/O4iw9NlLaQ NaN NaN NaN https://twitter.com/dog_rates/status/741303864243200000/photo/1 12 10 Theodore None None None None
1062 741099773336379392 NaN NaN 2016-06-10 02:48:49 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Ted. He's given up. 11/10 relatable af https://t.co/7muyOQXbGJ NaN NaN NaN https://vine.co/v/ixHYvdxUx1L 11 10 Ted None None None None
1063 741067306818797568 NaN NaN 2016-06-10 00:39:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC NaN NaN NaN https://twitter.com/dog_rates/status/741067306818797568/photo/1 12 10 just doggo None pupper None
1064 740995100998766593 NaN NaN 2016-06-09 19:52:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Leo. He's a vape god. Blows o's for days. Probably drives a Subaru. Definitely owns multiple fedoras. 10/10 https://t.co/nt2x3fHaRJ NaN NaN NaN https://twitter.com/dog_rates/status/740995100998766593/photo/1 10 10 Leo None None None None
1065 740711788199743490 NaN NaN 2016-06-09 01:07:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet https://t.co/CmLoKMbOHv NaN NaN NaN https://twitter.com/dog_rates/status/740711788199743490/photo/1 9 10 None None None None None
1066 740699697422163968 NaN NaN 2016-06-09 00:19:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chip. He only mowed half the yard. 8/10 quit the shit Chip we have other things to do https://t.co/LjzZKQ7vmK NaN NaN NaN https://twitter.com/dog_rates/status/740699697422163968/photo/1 8 10 Chip None None None None
1067 740676976021798912 NaN NaN 2016-06-08 22:48:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://t.co/sMbMw5Z2XC NaN NaN NaN https://twitter.com/dog_rates/status/740676976021798912/photo/1 11 10 Baloo None None pupper None
1068 740373189193256964 NaN NaN 2016-06-08 02:41:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ NaN NaN NaN https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1 9 11 None None None None None
1069 740365076218183684 NaN NaN 2016-06-08 02:09:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When the photographer forgets to tell you where to look... 10/10 https://t.co/u1GHWxhC85 NaN NaN NaN https://twitter.com/dog_rates/status/740365076218183684/photo/1 10 10 None None None None None
1070 740359016048689152 NaN NaN 2016-06-08 01:45:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chase. He's in a predicament. 9/10 help is on the way buddy https://t.co/0HmBk5sSbW NaN NaN NaN https://twitter.com/dog_rates/status/740359016048689152/photo/1 9 10 Chase None None None None
1071 740214038584557568 NaN NaN 2016-06-07 16:09:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X NaN NaN NaN https://twitter.com/dog_rates/status/740214038584557568/photo/1 10 10 getting None None None None
1072 739979191639244800 NaN NaN 2016-06-07 00:36:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.co/7AKdkCOlMf NaN NaN NaN https://twitter.com/dog_rates/status/739979191639244800/photo/1 12 10 Nollie None None None None
1073 739932936087216128 NaN NaN 2016-06-06 21:32:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Rorie. She's zen af. Just enjoying a treat in the sunlight. 10/10 would immediately trade lives with https://t.co/yctnFptdQ1 NaN NaN NaN https://twitter.com/dog_rates/status/739932936087216128/photo/1 10 10 Rorie None None None None
1074 739844404073074688 NaN NaN 2016-06-06 15:40:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Simba. He's the grand prize. The trophy is just for participation. 12/10 would pet so damn well https://t.co/4qiuC0lXq5 NaN NaN NaN https://twitter.com/dog_rates/status/739844404073074688/photo/1 12 10 Simba None None None None
1075 739623569819336705 NaN NaN 2016-06-06 01:02:55 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Here's a doggo that don't need no human. 12/10 independent af (vid by @MichelleLiuCee) https://t.co/vdgtdb6rON NaN NaN NaN https://vine.co/v/iY9Fr1I31U6 12 10 None doggo None None None
1076 739606147276148736 NaN NaN 2016-06-05 23:53:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 https://t.co/sLUC4th3Zj NaN NaN NaN https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1 9 10 Benji None None pupper None
1077 739544079319588864 NaN NaN 2016-06-05 19:47:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P NaN NaN NaN https://twitter.com/dog_rates/status/739544079319588864/photo/1 10 10 None None None None None
1078 739485634323156992 NaN NaN 2016-06-05 15:54:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle https://t.co/rRULp7XFnO NaN NaN NaN https://twitter.com/dog_rates/status/739485634323156992/photo/1,https://twitter.com/dog_rates/status/739485634323156992/photo/1 6 10 Kyle None None None None
1079 739238157791694849 NaN NaN 2016-06-04 23:31:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t.co/YcXgHfp1EC NaN NaN NaN https://twitter.com/dog_rates/status/739238157791694849/video/1 13 10 None doggo None None None
1080 738891149612572673 7.384119e+17 3.589728e+08 2016-06-04 00:32:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @mount_alex3 13/10 NaN NaN NaN NaN 13 10 None None None None None
1081 738885046782832640 NaN NaN 2016-06-04 00:08:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charles. He's a Nova Scotian Towel Pouncer. Deadly af. Nifty tongue slip. 11/10 would pet with caution https://t.co/EfejX3iRGr NaN NaN NaN https://twitter.com/dog_rates/status/738885046782832640/photo/1 11 10 Charles None None None None
1082 738883359779196928 NaN NaN 2016-06-04 00:01:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When a single soap orb changes your entire perception of the universe... 10/10 https://t.co/9eCXpVExJc NaN NaN NaN https://twitter.com/dog_rates/status/738883359779196928/photo/1,https://twitter.com/dog_rates/status/738883359779196928/photo/1 10 10 None None None None None
1083 738537504001953792 NaN NaN 2016-06-03 01:07:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bayley. She fell asleep trying to escape her evil fence enclosure. 11/10 night night puppo https://t.co/AxSiqAKEKu NaN NaN NaN https://twitter.com/dog_rates/status/738537504001953792/photo/1,https://twitter.com/dog_rates/status/738537504001953792/photo/1 11 10 Bayley None None None puppo
1084 738402415918125056 NaN NaN 2016-06-02 16:10:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Don't talk to me or my son ever again" ...10/10 for both https://t.co/s96OYXZIfK NaN NaN NaN https://twitter.com/dog_rates/status/738402415918125056/photo/1 10 10 None None None None None
1085 738184450748633089 NaN NaN 2016-06-02 01:44:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 https://t.co/twxYcPOafl NaN NaN NaN https://twitter.com/dog_rates/status/738184450748633089/photo/1 9 10 None None None None None
1086 738166403467907072 NaN NaN 2016-06-02 00:32:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Axel. He's a professional leaf catcher. 12/10 gifted af https://t.co/P8bgOMMTRs NaN NaN NaN https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1 12 10 Axel None None None None
1087 738156290900254721 NaN NaN 2016-06-01 23:52:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Storkson. He's wet and sad. 10/10 cheer up pup https://t.co/nrzvzPuTvC NaN NaN NaN https://twitter.com/dog_rates/status/738156290900254721/photo/1 10 10 Storkson None None None None
1088 737826014890496000 NaN NaN 2016-06-01 02:00:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Remy. He has some long ass ears (probably magical). Also very proud of broken stick. 10/10 such a good boy https://t.co/EZx0YjPjPK NaN NaN NaN https://twitter.com/dog_rates/status/737826014890496000/photo/1,https://twitter.com/dog_rates/status/737826014890496000/photo/1 10 10 Remy None None None None
1089 737800304142471168 NaN NaN 2016-06-01 00:17:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bella. She's ubering home after a few too many drinks. 10/10 socially conscious af https://t.co/KxkOgq80Xj NaN NaN NaN https://twitter.com/dog_rates/status/737800304142471168/photo/1 10 10 Bella None None None None
1090 737678689543020544 NaN NaN 2016-05-31 16:14:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 https://t.co/VflvQLH2y5 NaN NaN NaN https://twitter.com/dog_rates/status/737678689543020544/photo/1 11 10 None None None None None
1091 737445876994609152 NaN NaN 2016-05-31 00:49:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af https://t.co/CaG9MzD3WT NaN NaN NaN https://twitter.com/dog_rates/status/737445876994609152/photo/1 13 10 None None floofer None None
1092 737322739594330112 NaN NaN 2016-05-30 16:40:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Lily. She's not injured or anything. Just wants everyone to hear her. 9/10 clever af https://t.co/3xqGVH0Dhw NaN NaN NaN https://twitter.com/dog_rates/status/737322739594330112/photo/1 9 10 Lily None None None None
1093 737310737551491075 NaN NaN 2016-05-30 15:52:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Everybody stop what you're doing and watch these puppers enjoy summer. Both 13/10 https://t.co/wvjqSCN6iC NaN NaN NaN https://twitter.com/dog_rates/status/737310737551491075/video/1 13 10 None None None None None
1094 736736130620620800 NaN NaN 2016-05-29 01:49:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chadrick. He's gnarly af 13/10 https://t.co/447tyBN0mW NaN NaN NaN https://twitter.com/dog_rates/status/736736130620620800/photo/1 13 10 Chadrick None None None None
1095 736392552031657984 NaN NaN 2016-05-28 03:04:00 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX NaN NaN NaN https://vine.co/v/iEggaEOiLO3 13 10 mad None None pupper None
1096 736365877722001409 NaN NaN 2016-05-28 01:18:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rory. He's extremely impatient. 11/10 settle down pupper https://t.co/e3tfXJLi40 NaN NaN NaN https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1 11 10 Rory None None pupper None
1097 736225175608430592 NaN NaN 2016-05-27 15:58:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc NaN NaN NaN https://twitter.com/dog_rates/status/736225175608430592/photo/1 10 10 very None None None None
1098 736010884653420544 NaN NaN 2016-05-27 01:47:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 https://t.co/O1TLuYjsNS NaN NaN NaN https://twitter.com/dog_rates/status/736010884653420544/photo/1,https://twitter.com/dog_rates/status/736010884653420544/photo/1 10 10 None None None None None
1099 735991953473572864 NaN NaN 2016-05-27 00:32:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Maxaroni. He's curly af. Also rather fabulous. 11/10 would hug well https://t.co/A216OjIdca NaN NaN NaN https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1 11 10 Maxaroni None None None None
1100 735648611367784448 NaN NaN 2016-05-26 01:47:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> *faints* 12/10 perfection in pupper form https://t.co/t6TxTwTLEK NaN NaN NaN https://twitter.com/dog_rates/status/735648611367784448/photo/1 12 10 None None None pupper None
1101 735635087207878657 NaN NaN 2016-05-26 00:54:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dakota. He hasn't grow into his skin yet. 11/10 would squeeze softly https://t.co/IvFSlNXpgj NaN NaN NaN https://twitter.com/dog_rates/status/735635087207878657/photo/1,https://twitter.com/dog_rates/status/735635087207878657/photo/1 11 10 Dakota None None None None
1102 735274964362878976 NaN NaN 2016-05-25 01:03:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Please stop sending in your 31 year old sons that won't get out of your house. Thank you... 11/10 https://t.co/aTU53NNUkt NaN NaN NaN https://twitter.com/dog_rates/status/735274964362878976/photo/1,https://twitter.com/dog_rates/status/735274964362878976/photo/1 11 10 None None None None None
1103 735256018284875776 NaN NaN 2016-05-24 23:47:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo https://t.co/MRYv7nDPyS NaN NaN NaN https://twitter.com/dog_rates/status/735256018284875776/photo/1 8 10 Kellogg doggo None None None
1104 735137028879360001 NaN NaN 2016-05-24 15:55:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Buckley. His family &amp; some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper https://t.co/5bdCpPlno9 NaN NaN NaN https://twitter.com/dog_rates/status/735137028879360001/photo/1 9 10 Buckley None None pupper None
1105 734912297295085568 NaN NaN 2016-05-24 01:02:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jax. He's a literal fluffball. Sneaky tongue slip. 10/10 would pet nonstop https://t.co/9MGouPwQmK NaN NaN NaN https://twitter.com/dog_rates/status/734912297295085568/photo/1 10 10 Jax None None None None
1106 734787690684657664 NaN NaN 2016-05-23 16:46:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This dog is more successful than I will ever be. 13/10 absolute legend https://t.co/BPoaHySYwA NaN NaN NaN https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1 13 10 None None None None None
1107 734776360183431168 NaN NaN 2016-05-23 16:01:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Livvie. Someone should tell her it's been 47 years since Woodstock. Magical eyes tho 11/10 would stare into https://t.co/qw07vhVHuO NaN NaN NaN https://twitter.com/dog_rates/status/734776360183431168/photo/1 11 10 Livvie None None None None
1108 734559631394082816 NaN NaN 2016-05-23 01:40:38 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> When your friend is turnt af and you're just trying to chill. 10/10 (vid by @presgang) https://t.co/OufVDk23JC NaN NaN NaN https://vine.co/v/iExiLXiiHvX 10 10 None None None None None
1109 733828123016450049 NaN NaN 2016-05-21 01:13:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Terry. The harder you hug him the farther his tongue sticks out. 10/10 magical af https://t.co/RFToQQI8fJ NaN NaN NaN https://twitter.com/dog_rates/status/733828123016450049/photo/1,https://twitter.com/dog_rates/status/733828123016450049/photo/1 10 10 Terry None None None None
1110 733822306246479872 NaN NaN 2016-05-21 00:50:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Moose. He's a Polynesian Floofer. Dapper af. 10/10 would pet diligently https://t.co/mVfqRdppTL NaN NaN NaN https://twitter.com/dog_rates/status/733822306246479872/photo/1 10 10 Moose None floofer None None
1111 733482008106668032 NaN NaN 2016-05-20 02:18:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Ello this is dog how may I assist" ...10/10 https://t.co/jeAENpjH7L NaN NaN NaN https://twitter.com/dog_rates/status/733482008106668032/photo/1 10 10 None None None None None
1112 733460102733135873 NaN NaN 2016-05-20 00:51:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hermione. Her face is as old as time. Appears fluffy af tho. 11/10 pretty damn majestic https://t.co/0b41Q4DKCA NaN NaN NaN https://twitter.com/dog_rates/status/733460102733135873/photo/1 11 10 Hermione None None None None
1113 733109485275860992 NaN NaN 2016-05-19 01:38:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda NaN NaN NaN https://twitter.com/dog_rates/status/733109485275860992/photo/1 12 10 None doggo None pupper None
1114 732732193018155009 NaN NaN 2016-05-18 00:39:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ralpher. He's an East Guinean Flop Dog. Cuddly af. 12/10 https://t.co/rVOLuNRpjH NaN NaN NaN https://twitter.com/dog_rates/status/732732193018155009/photo/1 12 10 Ralpher None None None None
1115 732726085725589504 NaN NaN 2016-05-18 00:14:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Aldrick. He looks wise af. Also exceptionally fluffy. Only two legs tho (unfortunate). 11/10 would still hug https://t.co/QwiCVLPMNL NaN NaN NaN https://twitter.com/dog_rates/status/732726085725589504/photo/1 11 10 Aldrick None None None None
1116 732585889486888962 NaN NaN 2016-05-17 14:57:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 https://t.co/sVnJfWVjUp NaN NaN NaN https://twitter.com/dog_rates/status/732585889486888962/photo/1,https://twitter.com/dog_rates/status/732585889486888962/photo/1 10 10 None None None None None
1117 732375214819057664 NaN NaN 2016-05-17 01:00:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kyle (pronounced 'Mitch'). He strives to be the best doggo he can be. 11/10 would pat on head approvingly https://t.co/aA2GiTGvlE NaN NaN NaN https://twitter.com/dog_rates/status/732375214819057664/photo/1 11 10 Kyle doggo None None None
1118 732005617171337216 NaN NaN 2016-05-16 00:31:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r NaN NaN NaN https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1 11 10 Larry None None None None
1119 731285275100512256 NaN NaN 2016-05-14 00:49:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Solomon. He's a Beneroo Cumberflop. 12/10 would hug passionately https://t.co/5phLAnGPTP NaN NaN NaN https://twitter.com/dog_rates/status/731285275100512256/photo/1 12 10 Solomon None None None None
1120 731156023742988288 NaN NaN 2016-05-13 16:15:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv NaN NaN NaN https://twitter.com/dog_rates/status/731156023742988288/photo/1 204 170 this None None None None
1121 730924654643314689 NaN NaN 2016-05-13 00:56:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 https://t.co/2yctWAUZ3Z NaN NaN NaN https://twitter.com/dog_rates/status/730924654643314689/photo/1 9 10 unacceptable None None None None
1122 730573383004487680 NaN NaN 2016-05-12 01:40:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rooney. He can't comprehend glass. 10/10 it'll be ok pupper https://t.co/CnUl2uDBBV NaN NaN NaN https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1 10 10 Rooney None None pupper None
1123 730427201120833536 NaN NaN 2016-05-11 15:59:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Crystal. She's flawless. Really wants to be a frat bro. 11/10 who does she even know here? https://t.co/WyqNFvEulG NaN NaN NaN https://twitter.com/dog_rates/status/730427201120833536/photo/1 11 10 Crystal None None None None
1124 730211855403241472 NaN NaN 2016-05-11 01:44:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ziva. She doesn't know how her collar works. 11/10 would totally fix for her https://t.co/K7pthJXjWE NaN NaN NaN https://twitter.com/dog_rates/status/730211855403241472/photo/1 11 10 Ziva None None None None
1125 730196704625098752 NaN NaN 2016-05-11 00:43:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charles. He's camera shy. Tail longer than average. Doesn't look overwhelmingly fluffy. 6/10 would still pet https://t.co/rXvcElhoog NaN NaN NaN https://twitter.com/dog_rates/status/730196704625098752/photo/1 6 10 Charles None None None None
1126 729854734790754305 NaN NaN 2016-05-10 02:05:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Ollie. He conducts this train. He also greets you as you enter. Kind af. 11/10 would pet so firmly https://t.co/jVxOGKEU0z NaN NaN NaN https://twitter.com/dog_rates/status/729854734790754305/photo/1 11 10 Ollie None None None None
1127 729838605770891264 7.291135e+17 4.196984e+09 2016-05-10 01:00:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Challenge completed" \n(pupgraded to 12/10) https://t.co/85dTK7XCXB NaN NaN NaN https://twitter.com/dog_rates/status/729838605770891264/video/1 12 10 None None None None None
1128 729823566028484608 NaN NaN 2016-05-10 00:01:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stefan. He's a downright remarkable pup. 13/10 https://t.co/Ebjt6Y4fMh NaN NaN NaN https://twitter.com/dog_rates/status/729823566028484608/photo/1 13 10 Stefan None None None None
1129 729463711119904772 NaN NaN 2016-05-09 00:11:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Pupcasso. You can't afford his art. 13/10 talented af https://t.co/f2VUpy4WO0 NaN NaN NaN https://twitter.com/dog_rates/status/729463711119904772/photo/1 13 10 Pupcasso None None None None
1130 729113531270991872 NaN NaN 2016-05-08 00:59:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Challenge accepted"\n10/10 https://t.co/vNjvr5Bl9u NaN NaN NaN https://twitter.com/dog_rates/status/729113531270991872/photo/1,https://twitter.com/dog_rates/status/729113531270991872/photo/1 10 10 None None None None None
1131 728986383096946689 NaN NaN 2016-05-07 16:34:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Puff. He started out on the streets (first pic), but don't let the new smile fool you, still tough af. 11/10 https://t.co/kiuXRXcg4B NaN NaN NaN https://twitter.com/dog_rates/status/728986383096946689/photo/1,https://twitter.com/dog_rates/status/728986383096946689/photo/1 11 10 Puff None None None None
1132 728760639972315136 NaN NaN 2016-05-07 01:37:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you're way too slow for the "down low" portion of a high five. 13/10 https://t.co/Cofwoy7Vpq NaN NaN NaN https://twitter.com/dog_rates/status/728760639972315136/photo/1,https://twitter.com/dog_rates/status/728760639972315136/photo/1 13 10 None None None None None
1133 728751179681943552 NaN NaN 2016-05-07 00:59:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Flurpson. He can't believe it's not butter. 10/10 https://t.co/XD3ort1PsE NaN NaN NaN https://twitter.com/dog_rates/status/728751179681943552/photo/1 10 10 Flurpson None None None None
1134 728653952833728512 NaN NaN 2016-05-06 18:33:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Coleman. Somebody needs to tell him that he's sitting in chairs wrong. 8/10 https://t.co/O10zjJ2Ixs NaN NaN NaN https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1 8 10 Coleman None None None None
1135 728409960103686147 NaN NaN 2016-05-06 02:24:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wallace. He's a skater pup. He said see ya later pup. Can easily do a kick flip. Gnarly af. 10/10 v petable https://t.co/5i8fORVKgr NaN NaN NaN https://twitter.com/dog_rates/status/728409960103686147/photo/1 10 10 Wallace None None None None
1136 728387165835677696 NaN NaN 2016-05-06 00:53:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Enchilada (yes, that's her real name). She's a Low-Cruisin Plopflopple. Very rare. Only a few left. 12/10 https://t.co/SiaiTWgsfP NaN NaN NaN https://twitter.com/dog_rates/status/728387165835677696/photo/1 12 10 Enchilada None None None None
1137 728046963732717569 NaN NaN 2016-05-05 02:21:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ NaN NaN NaN https://twitter.com/dog_rates/status/728046963732717569/photo/1 11 10 Raymond None None None None
1138 728035342121635841 NaN NaN 2016-05-05 01:35:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is all I want in my life. 12/10 for super sleepy pupper https://t.co/4RlLA5ObMh NaN NaN NaN https://twitter.com/dog_rates/status/728035342121635841/photo/1,https://twitter.com/dog_rates/status/728035342121635841/photo/1 12 10 all None None pupper None
1139 728015554473250816 NaN NaN 2016-05-05 00:16:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rueben. He has reached ultimate pupper zen state. 11/10 tranquil af https://t.co/Z167HgtnBi NaN NaN NaN https://twitter.com/dog_rates/status/728015554473250816/photo/1 11 10 Rueben None None pupper None
1140 727685679342333952 NaN NaN 2016-05-04 02:26:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cilantro. She's a Fellation Gadzooks. Eyes are super magical af. 12/10 could get lost in https://t.co/yJ26LNuyj5 NaN NaN NaN https://twitter.com/dog_rates/status/727685679342333952/photo/1 12 10 Cilantro None None None None
1141 727644517743104000 NaN NaN 2016-05-03 23:42:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a doggo struggling to cope with the winds. 13/10 https://t.co/qv3aUwaouT NaN NaN NaN https://twitter.com/dog_rates/status/727644517743104000/photo/1,https://twitter.com/dog_rates/status/727644517743104000/photo/1 13 10 None doggo None None None
1142 727524757080539137 NaN NaN 2016-05-03 15:46:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af https://t.co/fUyDIFkBwx NaN NaN NaN https://twitter.com/dog_rates/status/727524757080539137/photo/1,https://twitter.com/dog_rates/status/727524757080539137/photo/1 10 10 None None None pupper None
1143 727314416056803329 NaN NaN 2016-05-03 01:50:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper was about to explain where that dirt came from but then decided against it. 11/10 https://t.co/SbaelU6zRs NaN NaN NaN https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1 11 10 None None None pupper None
1144 727286334147182592 NaN NaN 2016-05-02 23:59:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 https://t.co/bbta2Q4URK NaN NaN NaN https://twitter.com/dog_rates/status/727286334147182592/photo/1 9 10 None None None None None
1145 727175381690781696 NaN NaN 2016-05-02 16:38:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Karll. He just wants to go kayaking. 10/10 please someone take Karll kayaking already https://t.co/vXLkvyNQHp NaN NaN NaN https://twitter.com/dog_rates/status/727175381690781696/photo/1,https://twitter.com/dog_rates/status/727175381690781696/photo/1 10 10 Karll None None None None
1146 727155742655025152 NaN NaN 2016-05-02 15:20:13 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> When you're trying to enjoy yourself but end up having to take care of your way too drunk friend. 11/10 https://t.co/BRkhj6tdN0 NaN NaN NaN https://vine.co/v/ixa1ejbXiM7 11 10 None None None None None
1147 726935089318363137 NaN NaN 2016-05-02 00:43:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sprout. He's just precious af. 12/10 I'd do anything for Sprout https://t.co/DxlX1yTVYY NaN NaN NaN https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1 12 10 Sprout None None None None
1148 726887082820554753 NaN NaN 2016-05-01 21:32:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Blitz. He's a new dad struggling to cope mentally with the pressures of being a father. Sick shades 10/10 https://t.co/2AVcJ2BZsy NaN NaN NaN https://twitter.com/dog_rates/status/726887082820554753/photo/1 10 10 Blitz None None None None
1149 726828223124897792 NaN NaN 2016-05-01 17:38:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bloop. He's a Phoenician Winnebago. Tongue is just wow. That box is all he has (tragic). 12/10 would caress https://t.co/DWNrPPXgHA NaN NaN NaN https://twitter.com/dog_rates/status/726828223124897792/photo/1 12 10 Bloop None None None None
1150 726224900189511680 NaN NaN 2016-04-30 01:41:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 https://t.co/Rgbni2Ns8z NaN NaN NaN https://twitter.com/dog_rates/status/726224900189511680/photo/1 9 10 None None None None None
1151 725842289046749185 NaN NaN 2016-04-29 00:21:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH NaN NaN NaN https://twitter.com/dog_rates/status/725842289046749185/photo/1 12 10 Colby None None None None
1152 725786712245440512 NaN NaN 2016-04-28 20:40:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Lillie. She's a Rutabagan Floofem. Poor pupper ate and then passed out. 11/10 relatable af https://t.co/uIdGqug9rw NaN NaN NaN https://twitter.com/dog_rates/status/725786712245440512/photo/1 11 10 Lillie None None pupper None
1153 725729321944506368 NaN NaN 2016-04-28 16:52:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lola. She's a Butternut Splishnsplash. They are known to be ferocious af. 12/10 would absolutely still pet https://t.co/adQt5a6TZU NaN NaN NaN https://twitter.com/dog_rates/status/725729321944506368/photo/1 12 10 Lola None None None None
1154 725458796924002305 NaN NaN 2016-04-27 22:57:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Pup had to be removed cuz it wouldn't have been fair to the opposing team. 13/10 absolute legend ⚽️\nhttps://t.co/BHICimO58W NaN NaN NaN https://twitter.com/foxdeportes/status/725136065078521856 13 10 None None None None None
1155 724983749226668032 NaN NaN 2016-04-26 15:29:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Fred-Rick. He dabbles in parkour. The elevation gives him power. 12/10 hopefully visiting a mailbox near you https://t.co/qFqLtudIiD NaN NaN NaN https://twitter.com/dog_rates/status/724983749226668032/photo/1 12 10 Fred None None None None
1156 724771698126512129 NaN NaN 2016-04-26 01:26:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Nothin better than a doggo and a sunset. 11/10 https://t.co/JlFqOhrHEs NaN NaN NaN https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1 11 10 None doggo None None None
1157 724405726123311104 NaN NaN 2016-04-25 01:12:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ashleigh. She's having Coachella withdrawals. Didn't even go tho. 10/10 stay strong pupper https://t.co/nRUaKWnJfH NaN NaN NaN https://twitter.com/dog_rates/status/724405726123311104/photo/1 10 10 Ashleigh None None pupper None
1158 724049859469295616 NaN NaN 2016-04-24 01:38:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kreggory. He just took a look at his student debt. 10/10 can't even comprehend it https://t.co/XTsZTgilnT NaN NaN NaN https://twitter.com/dog_rates/status/724049859469295616/photo/1 10 10 Kreggory None None None None
1159 724046343203856385 NaN NaN 2016-04-24 01:24:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sarge. Not even he knows what his tongue is doing, but it's pretty damn spectacular. 10/10 https://t.co/pIQEdbBxdL NaN NaN NaN https://twitter.com/dog_rates/status/724046343203856385/photo/1 10 10 Sarge None None None None
1160 724004602748780546 NaN NaN 2016-04-23 22:38:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Luther. He saw a ghost. Spooked af. 11/10 hang in there pupper https://t.co/EdKG43VvEl NaN NaN NaN https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1 11 10 Luther None None pupper None
1161 723912936180330496 NaN NaN 2016-04-23 16:34:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sugar. She's a Bolivian Superfloof. Spherical af. 12/10 would never let go of https://t.co/AhMfUu6Onm NaN NaN NaN https://twitter.com/dog_rates/status/723912936180330496/photo/1 12 10 Sugar None None None None
1162 723688335806480385 NaN NaN 2016-04-23 01:41:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Reginald. He starts screaming at random. 12/10 cuddly af https://t.co/YgNuDQbv89 NaN NaN NaN https://twitter.com/dog_rates/status/723688335806480385/photo/1,https://twitter.com/dog_rates/status/723688335806480385/photo/1 12 10 Reginald None None None None
1163 723673163800948736 NaN NaN 2016-04-23 00:41:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ivar. She is a badass Viking warrior. Will sack your village. 10/10 savage af https://t.co/Dz6MiVssVU NaN NaN NaN https://twitter.com/dog_rates/status/723673163800948736/photo/1 10 10 Ivar None None None None
1164 723179728551723008 NaN NaN 2016-04-21 16:00:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jangle. She's addicted to broccoli. It's the only thing she cares about. Tragic af. 8/10 get help pup https://t.co/8dNWp1cSEa NaN NaN NaN https://twitter.com/dog_rates/status/723179728551723008/photo/1 8 10 Jangle None None None None
1165 722974582966214656 NaN NaN 2016-04-21 02:25:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a NaN NaN NaN https://twitter.com/dog_rates/status/722974582966214656/photo/1 4 20 None None None None None
1166 722613351520608256 NaN NaN 2016-04-20 02:30:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Schnitzel. He's a Tropicana Floofboop. Getting too big for his favorite basket. 12/10 just so damn fluffy https://t.co/qjd0UJKYUY NaN NaN NaN https://twitter.com/dog_rates/status/722613351520608256/photo/1 12 10 Schnitzel None None None None
1167 721503162398597120 NaN NaN 2016-04-17 00:58:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Panda. He's happy af. 11/10 https://t.co/IOAk9i4UvE NaN NaN NaN https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1 11 10 Panda None None None None
1168 721001180231503872 NaN NaN 2016-04-15 15:44:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliver. Bath time is upon him. His fear of the wetness postpones his ultimate pupper destiny. 11/10 https://t.co/AFzzKqR4tT NaN NaN NaN https://twitter.com/dog_rates/status/721001180231503872/photo/1 11 10 Oliver None None pupper None
1169 720785406564900865 NaN NaN 2016-04-15 01:26:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Archie. He hears everything you say. Doesn't matter where you are. 12/10 https://t.co/0l4I8famYp NaN NaN NaN https://twitter.com/dog_rates/status/720785406564900865/photo/1 12 10 Archie None None None None
1170 720775346191278080 NaN NaN 2016-04-15 00:46:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Berkeley. He's in a predicament. 10/10 someone help him https://t.co/XSEXdQupej NaN NaN NaN https://twitter.com/dog_rates/status/720775346191278080/photo/1 10 10 Berkeley None None None None
1171 720415127506415616 NaN NaN 2016-04-14 00:55:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Garden's coming in nice this year. 10/10 https://t.co/5Lra3e4rrw NaN NaN NaN https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1 10 10 None None None None None
1172 720389942216527872 NaN NaN 2016-04-13 23:15:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ralphé. He patrols the lake. Looking for babes. 11/10 https://t.co/Pb6iMmo0wk NaN NaN NaN https://twitter.com/dog_rates/status/720389942216527872/photo/1 11 10 Ralphé None None None None
1173 720340705894408192 NaN NaN 2016-04-13 19:59:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Derek. He just got balled on. Can't even get up. Poor thing. 10/10 hang in there pupper https://t.co/BIRRF3bcWH NaN NaN NaN https://twitter.com/dog_rates/status/720340705894408192/photo/1 10 10 Derek None None pupper None
1174 720059472081784833 NaN NaN 2016-04-13 01:22:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort https://t.co/pRHX8yn9Yu NaN NaN NaN https://twitter.com/dog_rates/status/720059472081784833/photo/1 9 10 Charleson None None None None
1175 720043174954147842 NaN NaN 2016-04-13 00:17:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Neptune. He's a Snowy Swiss Mountain Floofapolis. Cheeky wink. Tongue nifty af. 11/10 would pet so firmly https://t.co/SoZq2Xoopv NaN NaN NaN https://twitter.com/dog_rates/status/720043174954147842/photo/1 11 10 Neptune None None None None
1176 719991154352222208 NaN NaN 2016-04-12 20:50:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 https://t.co/mvnBGaWULV NaN NaN NaN https://twitter.com/dog_rates/status/719991154352222208/photo/1,https://twitter.com/dog_rates/status/719991154352222208/photo/1 10 10 None doggo None None None
1177 719704490224398336 NaN NaN 2016-04-12 01:51:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Clyde. He's making sure you're having a good train ride. 12/10 great pupper https://t.co/y206kWHAj0 NaN NaN NaN https://twitter.com/dog_rates/status/719704490224398336/photo/1 12 10 Clyde None None pupper None
1178 719551379208073216 NaN NaN 2016-04-11 15:43:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Harnold. He accidentally opened the front facing camera. 10/10 get it together Harnold https://t.co/S6JHaSMtln NaN NaN NaN https://twitter.com/dog_rates/status/719551379208073216/photo/1 10 10 Harnold None None None None
1179 719367763014393856 NaN NaN 2016-04-11 03:33:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sid &amp; Murphy. Murphy floats alongside Sid and whispers motivational quotes in his ear. Magical af. Both 11/10 https://t.co/7mmjyearQW NaN NaN NaN https://twitter.com/dog_rates/status/719367763014393856/photo/1 11 10 Sid None None None None
1180 719339463458033665 NaN NaN 2016-04-11 01:41:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Lucy and Sophie. They think they're the same size. Both 10/10 would snug at same time https://t.co/HW50zkcf2R NaN NaN NaN https://twitter.com/dog_rates/status/719339463458033665/photo/1 10 10 Lucy None None None None
1181 719332531645071360 NaN NaN 2016-04-11 01:13:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pippa. She managed to start the car but is waiting for you to buckle up before driving. Responsible af 11/10 https://t.co/htrlmC7saz NaN NaN NaN https://twitter.com/dog_rates/status/719332531645071360/photo/1 11 10 Pippa None None None None
1182 718971898235854848 NaN NaN 2016-04-10 01:20:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sadie. She is prepared for battle. 10/10 https://t.co/JRckDkZVRT NaN NaN NaN https://twitter.com/dog_rates/status/718971898235854848/photo/1 10 10 Sadie None None None None
1183 718939241951195136 NaN NaN 2016-04-09 23:10:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Otis. Everybody look at Otis. 12/10 would probably faint while petting https://t.co/I9qoe1uEih NaN NaN NaN https://twitter.com/dog_rates/status/718939241951195136/photo/1 12 10 Otis None None None None
1184 718631497683582976 NaN NaN 2016-04-09 02:47:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t.co/D9jbbmPmos NaN NaN NaN https://twitter.com/dog_rates/status/718631497683582976/photo/1 10 10 None None None None None
1185 718613305783398402 NaN NaN 2016-04-09 01:35:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Carper. He's a Tortellini Angiosperm. In desperate need of a petting. 11/10 would hug softly https://t.co/lK9YDkRzPj NaN NaN NaN https://twitter.com/dog_rates/status/718613305783398402/photo/1 11 10 Carper None None None None
1186 718540630683709445 NaN NaN 2016-04-08 20:46:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Get you a pup that can do both. 10/10 https://t.co/zSbyvm62xZ NaN NaN NaN https://twitter.com/dog_rates/status/718540630683709445/photo/1,https://twitter.com/dog_rates/status/718540630683709445/photo/1 10 10 None None None None None
1187 718460005985447936 NaN NaN 2016-04-08 15:26:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Bowie. He's listening for underground squirrels. Smart af. Left eye is considerably magical. 9/10 would so pet https://t.co/JyNmyjy3fe NaN NaN NaN https://twitter.com/dog_rates/status/718460005985447936/photo/1 9 10 Bowie None None None None
1188 718454725339934721 NaN NaN 2016-04-08 15:05:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pic is old but I hadn't seen it until today and had to share. Creative af. 13/10 very good boy, would pet well https://t.co/4kD16wMA1Z NaN NaN NaN https://twitter.com/dog_rates/status/718454725339934721/photo/1 13 10 None None None None None
1189 718246886998687744 NaN NaN 2016-04-08 01:19:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target https://t.co/FmxOpf2Sgl NaN NaN NaN https://twitter.com/dog_rates/status/718246886998687744/photo/1 3 10 Alexanderson None None None None
1190 718234618122661888 NaN NaN 2016-04-08 00:30:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Suki. She was born with a blurry tail (unfortunate). Next level tongue tho. 11/10 nifty hardwood https://t.co/05S8oYztgb NaN NaN NaN https://twitter.com/dog_rates/status/718234618122661888/photo/1 11 10 Suki None None None None
1191 717841801130979328 NaN NaN 2016-04-06 22:29:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Barclay. His father was a banana. 11/10 appeeling af https://t.co/ucOEfr2rjV NaN NaN NaN https://twitter.com/dog_rates/status/717841801130979328/photo/1 11 10 Barclay None None None None
1192 717790033953034240 NaN NaN 2016-04-06 19:04:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a badass mystery pupper. You weren't aware that you owe him money, but you do. 10/10 shades sick af https://t.co/fv9e9AtzSG NaN NaN NaN https://twitter.com/dog_rates/status/717790033953034240/photo/1 10 10 None None None pupper None
1193 717537687239008257 NaN NaN 2016-04-06 02:21:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n NaN NaN NaN https://twitter.com/dog_rates/status/717537687239008257/photo/1 11 10 a None None None None
1194 717428917016076293 NaN NaN 2016-04-05 19:09:17 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Skittle. He's trying to communicate. 11/10 solid effort https://t.co/6WTfJvtKx6 NaN NaN NaN https://vine.co/v/iIhEU2lVqxz 11 10 Skittle None None None None
1195 717421804990701568 NaN NaN 2016-04-05 18:41:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly https://t.co/LBJqxMGaHi NaN NaN NaN https://twitter.com/dog_rates/status/717421804990701568/photo/1,https://twitter.com/dog_rates/status/717421804990701568/photo/1 9 10 Ebby None None None None
1196 717047459982213120 NaN NaN 2016-04-04 17:53:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Flávio (pronounced Baxter). He's a Benesnoop Cumberdog. Super rare. Symmetrical. 12/10 would pet so well https://t.co/fGgleFiBPq NaN NaN NaN https://twitter.com/dog_rates/status/717047459982213120/photo/1 12 10 Flávio None None None None
1197 717009362452090881 NaN NaN 2016-04-04 15:22:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Smokey. He's having some sort of existential crisis. 10/10 hang in there pupper https://t.co/JmgF4dMpw0 NaN NaN NaN https://twitter.com/dog_rates/status/717009362452090881/photo/1 10 10 Smokey None None pupper None
1198 716802964044845056 NaN NaN 2016-04-04 01:41:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Link. He struggles with couches. 10/10 would assist https://t.co/SbX4e6Yg3o NaN NaN NaN https://twitter.com/dog_rates/status/716802964044845056/photo/1,https://twitter.com/dog_rates/status/716802964044845056/photo/1 10 10 Link None None None None
1199 716791146589110272 NaN NaN 2016-04-04 00:55:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jennifur. She's supposed to be navigating. Not even buckled up. Insubordinate &amp; churlish. 11/10 would still pet https://t.co/h0trcJohYO NaN NaN NaN https://twitter.com/dog_rates/status/716791146589110272/photo/1 11 10 Jennifur None None None None
1200 716730379797970944 NaN NaN 2016-04-03 20:53:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> There has clearly been a mistake. Pup did nothing wrong. 12/10 would help escape\nhttps://t.co/Juid3nnLbC NaN NaN NaN https://twitter.com/chpsanfrancisco/status/716637124322177024 12 10 None None None None None
1201 716447146686459905 NaN NaN 2016-04-03 02:08:05 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Ozzy. He's acrobatic af. Legendary pupper status achieved. 13/10 https://t.co/gHWsCTu90E NaN NaN NaN https://vine.co/v/eMmXVPn5eQK 13 10 Ozzy None None pupper None
1202 716439118184652801 NaN NaN 2016-04-03 01:36:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq NaN NaN NaN https://twitter.com/dog_rates/status/716439118184652801/photo/1 50 50 Bluebert None None None None
1203 716285507865542656 NaN NaN 2016-04-02 15:25:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stephanus. She stays woke. 12/10 https://t.co/WIWabMngQZ NaN NaN NaN https://twitter.com/dog_rates/status/716285507865542656/photo/1,https://twitter.com/dog_rates/status/716285507865542656/photo/1 12 10 Stephanus None None None None
1204 716080869887381504 NaN NaN 2016-04-02 01:52:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a super majestic doggo and a sunset 11/10 https://t.co/UACnoyi8zu NaN NaN NaN https://twitter.com/dog_rates/status/716080869887381504/photo/1,https://twitter.com/dog_rates/status/716080869887381504/photo/1 11 10 None doggo None None None
1205 715928423106027520 NaN NaN 2016-04-01 15:46:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bubbles. He's a Yorkshire Piccolope. 11/10 would snug aggressively https://t.co/3BhMojONxq NaN NaN NaN https://twitter.com/dog_rates/status/715928423106027520/photo/1 11 10 Bubbles None None None None
1206 715758151270801409 NaN NaN 2016-04-01 04:30:16 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is old now but it's absolutely heckin fantastic and I can't not share it with you all. 13/10 https://t.co/wJX74TSgzP NaN NaN NaN https://vine.co/v/hYdLVKDpAFu 13 10 old None None None None
1207 715733265223708672 NaN NaN 2016-04-01 02:51:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 NaN NaN NaN https://twitter.com/dog_rates/status/715733265223708672/photo/1 10 10 a None None None None
1208 715704790270025728 NaN NaN 2016-04-01 00:58:13 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Bentley. He gives kisses back. 11/10 precious af (vid by @emmaallen25) https://t.co/9PnKkKzoUp NaN NaN NaN https://vine.co/v/ijAlDnuOD0l 11 10 Bentley None None None None
1209 715696743237730304 NaN NaN 2016-04-01 00:26:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Toby. He's a Lithuanian High-Steppin Stickeroo. One of the more accomplished Stickeroos around. 10/10 so nifty https://t.co/cYPHuJYTjC NaN NaN NaN https://twitter.com/dog_rates/status/715696743237730304/photo/1 10 10 Toby None None None None
1210 715680795826982913 NaN NaN 2016-03-31 23:22:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zeus. He's downright fabulous. 12/10 https://t.co/sSugyyRuTp NaN NaN NaN https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1 12 10 Zeus None None None None
1211 715360349751484417 NaN NaN 2016-03-31 02:09:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bertson. He just wants to say hi. 11/10 would boop nose https://t.co/hwv7Wq6gDA NaN NaN NaN https://twitter.com/dog_rates/status/715360349751484417/photo/1 11 10 Bertson None None None None
1212 715342466308784130 NaN NaN 2016-03-31 00:58:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oscar. He's a world renowned snowball inspector. It's a ruff job but someone has to do it. 10/10 great guy https://t.co/vSufMAKm3C NaN NaN NaN https://twitter.com/dog_rates/status/715342466308784130/photo/1,https://twitter.com/dog_rates/status/715342466308784130/photo/1 10 10 Oscar None None None None
1213 715220193576927233 NaN NaN 2016-03-30 16:52:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Nico. His selfie game is strong af. Excellent use of a sneaky tongue slip. 10/10 star material https://t.co/1OBdJkMOFx NaN NaN NaN https://twitter.com/dog_rates/status/715220193576927233/photo/1 10 10 Nico None None None None
1214 715200624753819648 NaN NaN 2016-03-30 15:34:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Michelangelope. He's half coffee cup. Rare af. 12/10 would hug until someone stopped me https://t.co/tvVDY0G911 NaN NaN NaN https://twitter.com/dog_rates/status/715200624753819648/photo/1 12 10 Michelangelope None None None None
1215 715009755312439296 NaN NaN 2016-03-30 02:56:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Siba. She's remarkably mobile. Very sleepy as well. 12/10 would happily transport https://t.co/TjnI33RE1i NaN NaN NaN https://twitter.com/dog_rates/status/715009755312439296/photo/1 12 10 Siba None None None None
1216 714982300363173890 NaN NaN 2016-03-30 01:07:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert https://t.co/jRm5J3YCmj NaN NaN NaN https://twitter.com/dog_rates/status/714982300363173890/photo/1 9 10 Calbert None None None None
1217 714962719905021952 NaN NaN 2016-03-29 23:49:30 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Just in case anyone's having a bad day. 12/10 would bounce with https://t.co/T9sgP9ttnQ NaN NaN NaN https://vine.co/v/inVtemLt9tE 12 10 None None None None None
1218 714957620017307648 NaN NaN 2016-03-29 23:29:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Curtis. He's an Albino Haberdasher. Terrified of dandelions. They really spook him up. 10/10 it'll be ok pup https://t.co/s8YcfZrWhK NaN NaN NaN https://twitter.com/dog_rates/status/714957620017307648/photo/1 10 10 Curtis None None None None
1219 714631576617938945 NaN NaN 2016-03-29 01:53:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Benedict. He's a feisty pup. Needs a brushing. Portable af. Looks very angry actually. 4/10 might not pet https://t.co/3oeFfHjv0Z NaN NaN NaN https://twitter.com/dog_rates/status/714631576617938945/photo/1 4 10 Benedict None None None None
1220 714606013974974464 NaN NaN 2016-03-29 00:12:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here are two lil cuddly puppers. Both 12/10 would snug like so much https://t.co/zO4eb7C4tG NaN NaN NaN https://twitter.com/dog_rates/status/714606013974974464/photo/1 12 10 None None None None None
1221 714485234495041536 NaN NaN 2016-03-28 16:12:09 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Blitz. He screams. 10/10 (vid by @yeaahliv) https://t.co/MfW2aym5UF NaN NaN NaN https://vine.co/v/iDrOvVqq0A6 10 10 Blitz None None None None
1222 714258258790387713 NaN NaN 2016-03-28 01:10:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Travis and Flurp. Travis is pretty chill but Flurp can't lie down properly. 10/10 &amp; 8/10\nget it together Flurp https://t.co/Akzl5ynMmE NaN NaN NaN https://twitter.com/dog_rates/status/714258258790387713/photo/1 10 10 Travis None None None None
1223 714251586676113411 NaN NaN 2016-03-28 00:43:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Thumas. He hates potted plants. 8/10 wtf Thumas https://t.co/rDVueNIcEi NaN NaN NaN https://twitter.com/dog_rates/status/714251586676113411/photo/1,https://twitter.com/dog_rates/status/714251586676113411/photo/1 8 10 Thumas None None None None
1224 714214115368108032 NaN NaN 2016-03-27 22:14:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy Easter from the squad! 🐇🐶 13/10 for all https://t.co/YMx4KWJUAB NaN NaN NaN https://twitter.com/dog_rates/status/714214115368108032/photo/1 13 10 None None None None None
1225 714141408463036416 NaN NaN 2016-03-27 17:25:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell https://t.co/O2RlKXigHu NaN NaN NaN https://twitter.com/dog_rates/status/714141408463036416/photo/1 10 10 None None None None None
1226 713919462244790272 NaN NaN 2016-03-27 02:43:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kanu. He's a Freckled Ticonderoga. Simply flawless. 12/10 would perform an elaborate heist to capture https://t.co/7vyAzIURrE NaN NaN NaN https://twitter.com/dog_rates/status/713919462244790272/photo/1 12 10 Kanu None None None None
1227 713909862279876608 NaN NaN 2016-03-27 02:05:49 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Doug. His nose is legendary af. 12/10 (vid by @probably_trey) https://t.co/7IWKfbfihS NaN NaN NaN https://vine.co/v/iDWlapaXWmm 12 10 Doug None None None None
1228 713900603437621249 NaN NaN 2016-03-27 01:29:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 NaN NaN NaN https://twitter.com/dog_rates/status/713900603437621249/photo/1 99 90 None None None None None
1229 713761197720473600 NaN NaN 2016-03-26 16:15:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Piper. She would really like that tennis ball core. Super sneaky tongue slip. 12/10 precious af https://t.co/QP6GHi5az9 NaN NaN NaN https://twitter.com/dog_rates/status/713761197720473600/photo/1,https://twitter.com/dog_rates/status/713761197720473600/photo/1 12 10 Piper None None None None
1230 713411074226274305 NaN NaN 2016-03-25 17:03:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose https://t.co/jVJJKlPbvq NaN NaN NaN https://twitter.com/dog_rates/status/713411074226274305/photo/1 11 10 None None None None None
1231 713177543487135744 NaN NaN 2016-03-25 01:35:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lance. Lance doesn't give a shit. 10/10 we should all be more like Lance https://t.co/SqnG9Ap28J NaN NaN NaN https://twitter.com/dog_rates/status/713177543487135744/photo/1 10 10 Lance None None None None
1232 713175907180089344 NaN NaN 2016-03-25 01:29:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Opie and Clarkus. Clarkus fell asleep so Opie buried him. Ruthless af 10/10 for both https://t.co/xT7XaY4gnW NaN NaN NaN https://twitter.com/dog_rates/status/713175907180089344/photo/1 10 10 Opie None None None None
1233 712809025985978368 NaN NaN 2016-03-24 01:11:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn NaN NaN NaN https://twitter.com/dog_rates/status/712809025985978368/photo/1 10 10 Stubert None None None None
1234 712717840512598017 NaN NaN 2016-03-23 19:09:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 https://t.co/83RGhdIQz2 NaN NaN NaN https://twitter.com/dog_rates/status/712717840512598017/photo/1 10 10 None None None None None
1235 712668654853337088 NaN NaN 2016-03-23 15:53:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Sunny and Roxy. They pull things out of water together. 10/10 for both https://t.co/88aedAmxcl NaN NaN NaN https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1 10 10 Sunny None None None None
1236 712438159032893441 NaN NaN 2016-03-23 00:37:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kane. He's a semi-submerged Haitian Huffleplop. Happy af. Sick waterfall. 11/10 would pat head approvingly https://t.co/7zjEC501Ul NaN NaN NaN https://twitter.com/dog_rates/status/712438159032893441/photo/1 11 10 Kane None None None None
1237 712309440758808576 NaN NaN 2016-03-22 16:06:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Reminder that we made our first set of stickers available! All are 12/10 would stick\nUse code "pupper" at checkout🐶\n\nhttps://t.co/kJIMNyMNKV NaN NaN NaN https://twitter.com/stickergrub/status/709919141004595201 12 10 None None None pupper None
1238 712097430750289920 NaN NaN 2016-03-22 02:03:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I can't even comprehend how confused this dog must be right now. 10/10 https://t.co/8AGcQ4hIfK NaN NaN NaN https://twitter.com/dog_rates/status/712097430750289920/photo/1 10 10 None None None None None
1239 712092745624633345 NaN NaN 2016-03-22 01:45:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Steven. He's inverted af. Also very helpful. Scans anything you want for free. Takes him a while tho. 7/10 https://t.co/tA0ZiQ7JcG NaN NaN NaN https://twitter.com/dog_rates/status/712092745624633345/photo/1 7 10 Steven None None None None
1240 712085617388212225 NaN NaN 2016-03-22 01:16:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Olive and Ruby. They are best buddies. Both 11/10 \n1 like = 1 buddy https://t.co/yagmFdKlyL NaN NaN NaN https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1 11 10 Olive None None None None
1241 712065007010385924 NaN NaN 2016-03-21 23:55:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chester. He's clearly in charge of the other dogs. Weird ass paws. Not fit for fetch. 6/10 would still pet https://t.co/o2GvskrhHt NaN NaN NaN https://twitter.com/dog_rates/status/712065007010385924/photo/1 6 10 Chester None None None None
1242 711998809858043904 NaN NaN 2016-03-21 19:31:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @twitter: @dog_rates Awesome Tweet! 12/10. Would Retweet. #LoveTwitter https://t.co/j6FQGhxYuN 7.119983e+17 7.832140e+05 2016-03-21 19:29:52 +0000 https://twitter.com/twitter/status/711998279773347841/photo/1,https://twitter.com/twitter/status/711998279773347841/photo/1 12 10 None None None None None
1243 711968124745228288 NaN NaN 2016-03-21 17:30:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Winston. He's trapped in a cup of coffee. Poor pupper. 10/10 someone free him https://t.co/2e6cUtKUuc NaN NaN NaN https://twitter.com/dog_rates/status/711968124745228288/photo/1 10 10 Winston None None pupper None
1244 711743778164514816 NaN NaN 2016-03-21 02:38:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Roosevelt. He's calculating the best case scenario if he drops out instead of doing math hw. 11/10 relatable af https://t.co/QcSIRDpfVg NaN NaN NaN https://twitter.com/dog_rates/status/711743778164514816/photo/1 11 10 Roosevelt None None None None
1245 711732680602345472 NaN NaN 2016-03-21 01:54:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I want to hear the joke this dog was just told. 10/10 https://t.co/1KiuZqqOD4 NaN NaN NaN https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1 10 10 None None None None None
1246 711694788429553666 NaN NaN 2016-03-20 23:23:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ NaN NaN NaN https://twitter.com/dog_rates/status/711694788429553666/photo/1 13 10 None None None None None
1247 711652651650457602 NaN NaN 2016-03-20 20:36:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gary. He just wanted to say hi. 9/10 very personable pup https://t.co/Sk3CbhmKSW NaN NaN NaN https://twitter.com/dog_rates/status/711652651650457602/photo/1 9 10 Gary None None None None
1248 711363825979756544 NaN NaN 2016-03-20 01:28:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Please, no puparazzi" 11/10 https://t.co/nJIXSPfedK NaN NaN NaN https://twitter.com/dog_rates/status/711363825979756544/photo/1,https://twitter.com/dog_rates/status/711363825979756544/photo/1 11 10 None None None None None
1249 711306686208872448 NaN NaN 2016-03-19 21:41:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair https://t.co/wcwoGOkZvz NaN NaN NaN https://twitter.com/dog_rates/status/711306686208872448/photo/1,https://twitter.com/dog_rates/status/711306686208872448/photo/1 3 10 None None None None None
1250 711008018775851008 NaN NaN 2016-03-19 01:54:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chuckles. He had a balloon but he accidentally let go of it and it floated away. 11/10 hang in there pupper https://t.co/68iNM7B5gW NaN NaN NaN https://twitter.com/dog_rates/status/711008018775851008/photo/1 11 10 Chuckles None None pupper None
1251 710997087345876993 NaN NaN 2016-03-19 01:11:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Milo and Amos. They are the best of pals. Both 12/10 would pet at the same time https://t.co/Mv37BHEyyD NaN NaN NaN https://twitter.com/dog_rates/status/710997087345876993/photo/1 12 10 Milo None None None None
1252 710844581445812225 NaN NaN 2016-03-18 15:05:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Staniel. His selfie game is strong af. 10/10 I'd snapchat with Staniel https://t.co/UgkTw7TKyM NaN NaN NaN https://twitter.com/dog_rates/status/710844581445812225/photo/1 10 10 Staniel None None None None
1253 710833117892898816 NaN NaN 2016-03-18 14:19:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Sora. She's an Egyptian Pumpernickel. Mesmerizing af. 12/10 would bring home to mom https://t.co/PmTR4kxZkq NaN NaN NaN https://twitter.com/dog_rates/status/710833117892898816/photo/1 12 10 Sora None None None None
1254 710658690886586372 NaN NaN 2016-03-18 02:46:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 NaN NaN NaN https://twitter.com/dog_rates/status/710658690886586372/photo/1 80 80 None None None None None
1255 710609963652087808 NaN NaN 2016-03-17 23:33:12 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> I've watched this a million times and you probably will too. 12/10 (vid by @emily_galasso) https://t.co/DU7Rb3NDiy NaN NaN NaN https://vine.co/v/idaTpwH5TgU 12 10 None None None None None
1256 710588934686908417 NaN NaN 2016-03-17 22:09:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Beemo. He's a Chubberflop mix. 12/10 would cross the world for https://t.co/kzMVMU8HBV NaN NaN NaN https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1 12 10 Beemo None None None None
1257 710296729921429505 NaN NaN 2016-03-17 02:48:31 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Oshie. 12/10 please enjoy (vid by @catherinec1389) https://t.co/VmtzwAuotq NaN NaN NaN https://vine.co/v/iw9hUFAMerV 12 10 Oshie None None None None
1258 710283270106132480 NaN NaN 2016-03-17 01:55:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gunner. He's a Figamus Newton. King of the peek-a-boo. Cool jeans. 11/10 https://t.co/ONuBILIYXZ NaN NaN NaN https://twitter.com/dog_rates/status/710283270106132480/photo/1,https://twitter.com/dog_rates/status/710283270106132480/photo/1 11 10 Gunner None None None None
1259 710272297844797440 NaN NaN 2016-03-17 01:11:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 NaN NaN NaN https://twitter.com/dog_rates/status/710272297844797440/photo/1 11 10 infuriating None None None None
1260 710269109699739648 NaN NaN 2016-03-17 00:58:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all https://t.co/OcCDb2bng5 NaN NaN NaN https://twitter.com/dog_rates/status/710269109699739648/photo/1 13 10 None None None None None
1261 710153181850935296 NaN NaN 2016-03-16 17:18:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lacy. She's tipping her hat to you. Daydreams of her life back on the frontier. 11/10 would pet so well https://t.co/fG5Pk3Et1I NaN NaN NaN https://twitter.com/dog_rates/status/710153181850935296/photo/1,https://twitter.com/dog_rates/status/710153181850935296/photo/1 11 10 Lacy None None None None
1262 710140971284037632 NaN NaN 2016-03-16 16:29:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 https://t.co/nLuPY3pY12 NaN NaN NaN https://twitter.com/dog_rates/status/710140971284037632/photo/1 8 10 Tater None None None None
1263 710117014656950272 NaN NaN 2016-03-16 14:54:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty https://t.co/h1OX2mLtxV NaN NaN NaN https://twitter.com/dog_rates/status/710117014656950272/photo/1,https://twitter.com/dog_rates/status/710117014656950272/photo/1 11 10 None None None pupper None
1264 709918798883774466 NaN NaN 2016-03-16 01:46:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG NaN NaN NaN https://twitter.com/dog_rates/status/709918798883774466/photo/1,https://twitter.com/dog_rates/status/709918798883774466/photo/1 12 10 Watson None None None None
1265 709901256215666688 NaN NaN 2016-03-16 00:37:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> WeRateDogs stickers are here and they're 12/10! Use code "puppers" at checkout 🐶🐾\n\nShop now: https://t.co/k5xsufRKYm https://t.co/ShXk46V13r NaN NaN NaN http://goo.gl/ArWZfi,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1 12 10 None None None None None
1266 709852847387627521 NaN NaN 2016-03-15 21:24:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> *lets out a tiny whimper and then collapses* ...12/10 https://t.co/BNdVZEHRow NaN NaN NaN https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1 12 10 None None None None None
1267 709566166965075968 NaN NaN 2016-03-15 02:25:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Olaf. He's gotta be rare. Seems sturdy. Tail is floofy af. 12/10 would do whatever it takes to pet https://t.co/E9jaU59bh9 NaN NaN NaN https://twitter.com/dog_rates/status/709566166965075968/photo/1 12 10 Olaf None None None None
1268 709556954897764353 NaN NaN 2016-03-15 01:48:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cecil. She's a Gigglefloof Poofer. Outdoorsy af. One with nature. 12/10 would strategically capture https://t.co/ijJB0DuOIC NaN NaN NaN https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1 12 10 Cecil None None None None
1269 709519240576036864 NaN NaN 2016-03-14 23:19:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell https://t.co/aczGAV2dK4 NaN NaN NaN https://twitter.com/dog_rates/status/709519240576036864/photo/1 9 10 Vince None None None None
1270 709449600415961088 NaN NaN 2016-03-14 18:42:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Karma. She's just a head. Lost body during the Second Punic War (unfortunate). Loves to travel 10/10 petable af https://t.co/c6af6nYEPo NaN NaN NaN https://twitter.com/dog_rates/status/709449600415961088/photo/1,https://twitter.com/dog_rates/status/709449600415961088/photo/1 10 10 Karma None None None None
1271 709409458133323776 NaN NaN 2016-03-14 16:02:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Billy. He sensed a squirrel. 8/10 damn it Billy https://t.co/Yu0K98VZ9A NaN NaN NaN https://twitter.com/dog_rates/status/709409458133323776/photo/1 8 10 Billy None None None None
1272 709225125749587968 NaN NaN 2016-03-14 03:50:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Walker. He's a Butternut Khalifa. Appears fuzzy af. 11/10 would hug for a ridiculous amount of time https://t.co/k6fEWHSALn NaN NaN NaN https://twitter.com/dog_rates/status/709225125749587968/photo/1 11 10 Walker None None None None
1273 709207347839836162 NaN NaN 2016-03-14 02:39:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg NaN NaN NaN https://twitter.com/dog_rates/status/709207347839836162/photo/1 11 10 Penny None None None None
1274 709198395643068416 NaN NaN 2016-03-14 02:04:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> From left to right:\nCletus, Jerome, Alejandro, Burp, &amp; Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK NaN NaN NaN https://twitter.com/dog_rates/status/709198395643068416/photo/1 45 50 None None None None None
1275 709179584944730112 NaN NaN 2016-03-14 00:49:23 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Sammy. He's in a tree. Very excited about it. 13/10 https://t.co/CLe9ETEjeF NaN NaN NaN https://vine.co/v/iwAjdlEjwMl 13 10 Sammy None None None None
1276 709158332880297985 NaN NaN 2016-03-13 23:24:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Rodney. He's a Ukranian Boomchicka. Outside but would like to be inside. Only has one ear (unfortunate) 10/10 https://t.co/FjAj3ggXrR NaN NaN NaN https://twitter.com/dog_rates/status/709158332880297985/photo/1 10 10 Rodney None None None None
1277 709042156699303936 NaN NaN 2016-03-13 15:43:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Klevin. He's addicted to sandwiches (yes a hotdog is a sandwich fight me) It's tearing his family apart 9/10 https://t.co/7BkkVNu5pd NaN NaN NaN https://twitter.com/dog_rates/status/709042156699303936/photo/1 9 10 Klevin None None None None
1278 708853462201716736 NaN NaN 2016-03-13 03:13:29 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Lucy. She doesn't understand fetch. 8/10 try turning off and back on (vid by @rileyyoungblood) https://t.co/RXjEwpVJf0 NaN NaN NaN https://vine.co/v/iHl2UDEBZ95 8 10 Lucy None None None None
1279 708845821941387268 NaN NaN 2016-03-13 02:43:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 https://t.co/5DLJB4ssvI NaN NaN NaN https://twitter.com/dog_rates/status/708845821941387268/photo/1,https://twitter.com/dog_rates/status/708845821941387268/photo/1 9 10 None None None pupper None
1280 708834316713893888 NaN NaN 2016-03-13 01:57:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Malikai. He was rolling around having fun when he remembered the inevitable heat death of the universe. 10/10 https://t.co/Vd2FqHIIGn NaN NaN NaN https://twitter.com/dog_rates/status/708834316713893888/photo/1 10 10 Malikai None None None None
1281 708810915978854401 NaN NaN 2016-03-13 00:24:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mister. He's a wonderful father to his two pups. Heartwarming af. 10/10 for all https://t.co/2KcuJXL2r4 NaN NaN NaN https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1 10 10 Mister None None None None
1282 708738143638450176 NaN NaN 2016-03-12 19:35:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Coco. She gets to stay on the Bachelor for another week. Super pumped 11/10 https://t.co/wsCB6LFNxD NaN NaN NaN https://twitter.com/dog_rates/status/708738143638450176/photo/1 11 10 Coco None None None None
1283 708711088997666817 NaN NaN 2016-03-12 17:47:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Smokey. He really likes tennis balls. 11/10 https://t.co/Ah7WlYTUBQ NaN NaN NaN https://twitter.com/dog_rates/status/708711088997666817/photo/1,https://twitter.com/dog_rates/status/708711088997666817/photo/1 11 10 Smokey None None None None
1284 708479650088034305 NaN NaN 2016-03-12 02:28:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Bear. He's a Beneboop Cumberclap. Extremely unamused. 13/10 I'm in love with this picture https://t.co/uC8kUqAz0W NaN NaN NaN https://twitter.com/dog_rates/status/708479650088034305/photo/1 13 10 Bear None None None None
1285 708469915515297792 NaN NaN 2016-03-12 01:49:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bobble. He's a Croatian Galifianakis. Hears everything within 400 miles. 11/10 would snug diligently https://t.co/VwDc6PTDzk NaN NaN NaN https://twitter.com/dog_rates/status/708469915515297792/photo/1 11 10 Bobble None None None None
1286 708400866336894977 NaN NaN 2016-03-11 21:15:02 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> RT if you are as ready for summer as this pup is 12/10 https://t.co/xdNNEZdGJY NaN NaN NaN https://vine.co/v/iHFqnjKVbIQ 12 10 None None None None None
1287 708356463048204288 NaN NaN 2016-03-11 18:18:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliver. That is his castle. He protects it with his life. He's also squishy af. 10/10 would squish softly https://t.co/oSuEGw0BhX NaN NaN NaN https://twitter.com/dog_rates/status/708356463048204288/photo/1,https://twitter.com/dog_rates/status/708356463048204288/photo/1 10 10 Oliver None None None None
1288 708349470027751425 NaN NaN 2016-03-11 17:50:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is River. He's changing the trumpet game. Innovative af. 11/10 such a good boy https://t.co/tK7a0AxQfd NaN NaN NaN https://twitter.com/dog_rates/status/708349470027751425/photo/1 11 10 River None None None None
1289 708149363256774660 NaN NaN 2016-03-11 04:35:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jebberson. He's the reigning hide and seek world champion. 10/10 hasn't lost his touch https://t.co/VEFkvWCoHF NaN NaN NaN https://twitter.com/dog_rates/status/708149363256774660/photo/1 10 10 Jebberson None None None None
1290 708130923141795840 NaN NaN 2016-03-11 03:22:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 https://t.co/XKhobeGuvT NaN NaN NaN https://twitter.com/dog_rates/status/708130923141795840/photo/1 11 10 None None None None None
1291 708119489313951744 NaN NaN 2016-03-11 02:36:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen https://t.co/kDamUfeIpm NaN NaN NaN https://twitter.com/dog_rates/status/708119489313951744/photo/1 9 10 Cooper None None None None
1292 708109389455101952 NaN NaN 2016-03-11 01:56:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Remington. He was caught off guard by the magical floating cheese. Spooked af. 10/10 deep breaths pup https://t.co/mhPSADiJmZ NaN NaN NaN https://twitter.com/dog_rates/status/708109389455101952/photo/1 10 10 Remington None None None None
1293 708026248782585858 NaN NaN 2016-03-10 20:26:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) https://t.co/5AJs8TIV1U NaN NaN NaN https://twitter.com/dog_rates/status/708026248782585858/video/1 13 10 None None None None None
1294 707995814724026368 NaN NaN 2016-03-10 18:25:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Farfle. He lost his back legs during the Battle of Gettysburg. Goes 0-60 in 4.3 seconds (damn) 12/10 hero af https://t.co/NiQQWzIzzq NaN NaN NaN https://twitter.com/dog_rates/status/707995814724026368/photo/1 12 10 Farfle None None None None
1295 707983188426153984 7.079801e+17 2.319108e+09 2016-03-10 17:35:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> @serial @MrRoles OH MY GOD I listened to all of season 1 during a single road trip. I love you guys! I can confirm Bernie's 12/10 rating :) NaN NaN NaN NaN 12 10 None None None None None
1296 707969809498152960 NaN NaN 2016-03-10 16:42:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Rufus. He's a Honeysuckle Firefox. Curly af. Badass tie. About to go on his first date ever 11/10 good luck pup https://t.co/dGoTWNfIsm NaN NaN NaN https://twitter.com/dog_rates/status/707969809498152960/photo/1 11 10 Rufus None None None None
1297 707776935007539200 NaN NaN 2016-03-10 03:55:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sadie. She's a Bohemian Rhapsody. Remarkably portable. Could sneak on roller coasters with (probably). 11/10 https://t.co/DB8fyeDs8B NaN NaN NaN https://twitter.com/dog_rates/status/707776935007539200/photo/1 11 10 Sadie None None None None
1298 707741517457260545 NaN NaN 2016-03-10 01:35:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup https://t.co/0nMgoue8IR NaN NaN NaN https://twitter.com/dog_rates/status/707741517457260545/photo/1 10 10 None None None None None
1299 707738799544082433 NaN NaN 2016-03-10 01:24:13 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> He's doing his best. 12/10 very impressive that he got his license in the first place https://t.co/2vRmkkOLcN NaN NaN NaN https://vine.co/v/hUvHKYrdb1d 12 10 None None None None None
1300 707693576495472641 NaN NaN 2016-03-09 22:24:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jiminus. He's in a tub for some reason. What a jokester. Smh 7/10 churlish af https://t.co/84L4ED9Tpi NaN NaN NaN https://twitter.com/dog_rates/status/707693576495472641/photo/1 7 10 Jiminus None None None None
1301 707629649552134146 NaN NaN 2016-03-09 18:10:30 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> We usually don't rate marshmallows but this one's having so much fun in the snow. 10/10 (vid by @kylejk24) https://t.co/NL2KwOioBh NaN NaN NaN https://vine.co/v/iHhBOTl5p9z 10 10 None None None None None
1302 707610948723478529 NaN NaN 2016-03-09 16:56:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 NaN NaN NaN https://twitter.com/dog_rates/status/707610948723478529/photo/1 12 10 Harper None None None None
1303 707420581654872064 NaN NaN 2016-03-09 04:19:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Keurig. He's a rare dog. Laughs like an idiot tho. Head is basically a weapon. Poorly maintained goatee 4/10 https://t.co/xOrUyj7K30 NaN NaN NaN https://twitter.com/dog_rates/status/707420581654872064/photo/1 4 10 Keurig None None None None
1304 707411934438625280 NaN NaN 2016-03-09 03:45:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 https://t.co/uQsCJ8pf51 NaN NaN NaN https://twitter.com/dog_rates/status/707411934438625280/photo/1 11 10 None None None pupper None
1305 707387676719185920 NaN NaN 2016-03-09 02:08:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E NaN NaN NaN https://twitter.com/dog_rates/status/707387676719185920/photo/1 10 10 Clarkus None None None None
1306 707377100785885184 NaN NaN 2016-03-09 01:26:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet https://t.co/iKThgKnW1j NaN NaN NaN https://twitter.com/dog_rates/status/707377100785885184/photo/1,https://twitter.com/dog_rates/status/707377100785885184/photo/1 9 10 None None None None None
1307 707315916783140866 NaN NaN 2016-03-08 21:23:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Finnegus. He's trapped in a snow globe. Poor pupper. 10/10 would make sure no one shook it https://t.co/BjpOa52jQ4 NaN NaN NaN https://twitter.com/dog_rates/status/707315916783140866/photo/1,https://twitter.com/dog_rates/status/707315916783140866/photo/1 10 10 Finnegus None None pupper None
1308 707297311098011648 NaN NaN 2016-03-08 20:09:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cassie. She can go from sweet to scary af in a matter of seconds. 10/10 points deducted for cats on pajamas https://t.co/B6dmZmJBdK NaN NaN NaN https://twitter.com/dog_rates/status/707297311098011648/photo/1,https://twitter.com/dog_rates/status/707297311098011648/photo/1 10 10 Cassie None None None None
1309 707059547140169728 NaN NaN 2016-03-08 04:25:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Cupcake. She's an Icelandic Dippen Dot. Confused by the oddly geometric lawn pattern. 11/10 https://t.co/D7rorf4YKL NaN NaN NaN https://twitter.com/dog_rates/status/707059547140169728/photo/1,https://twitter.com/dog_rates/status/707059547140169728/photo/1 11 10 Cupcake None None None None
1310 707038192327901184 NaN NaN 2016-03-08 03:00:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kathmandu. He sees every move you make. Probably knows Jiu-Jitsu. 10/10 mysterious af https://t.co/z0cs7E4Xjj NaN NaN NaN https://twitter.com/dog_rates/status/707038192327901184/photo/1,https://twitter.com/dog_rates/status/707038192327901184/photo/1 10 10 Kathmandu None None None None
1311 707021089608753152 NaN NaN 2016-03-08 01:52:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tucker. He's a Dasani Episcopalian. Good lord what a tongue. 12/10 would never let go of https://t.co/gHtW5cgyy7 NaN NaN NaN https://twitter.com/dog_rates/status/707021089608753152/photo/1,https://twitter.com/dog_rates/status/707021089608753152/photo/1 12 10 Tucker None None None None
1312 707014260413456384 NaN NaN 2016-03-08 01:25:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ellie. She requests to be carried around in a lacrosse stick at all times. 11/10 impossible to say no https://t.co/15yCmd43zU NaN NaN NaN https://twitter.com/dog_rates/status/707014260413456384/photo/1 11 10 Ellie None None None None
1313 706904523814649856 NaN NaN 2016-03-07 18:09:06 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f NaN NaN NaN https://vine.co/v/iXQAm5Lrgrh 13 10 None None None None None
1314 706901761596989440 NaN NaN 2016-03-07 17:58:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Elliot. He's blocking the roadway. Downright rude as hell. Doesn't care that you're already late. 3/10 https://t.co/FMUxir5pYu NaN NaN NaN https://twitter.com/dog_rates/status/706901761596989440/photo/1 3 10 Elliot None None None None
1315 706681918348251136 NaN NaN 2016-03-07 03:24:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Katie. She's a Mitsubishi Hufflepuff. Curly af. 12/10 I'd do terrible things to acquire such a pup https://t.co/CFPIcGcwJv NaN NaN NaN https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1 12 10 Katie None None None None
1316 706644897839910912 NaN NaN 2016-03-07 00:57:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Shadow. She's tired of the responsibilities associated with being a dog. No longer strives to attain ball. 9/10 https://t.co/cdOkfEpjFw NaN NaN NaN https://twitter.com/dog_rates/status/706644897839910912/video/1 9 10 Shadow None None None None
1317 706593038911545345 NaN NaN 2016-03-06 21:31:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a sneak peek of me on spring break. 10/10 so many tired pups these days https://t.co/6aJrjKfNqX NaN NaN NaN https://twitter.com/dog_rates/status/706593038911545345/photo/1 10 10 None None None None None
1318 706538006853918722 NaN NaN 2016-03-06 17:52:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliver (pronounced "Ricardo"). He's a ship captain. Controls these treacherous waters. 11/10 would sail with https://t.co/bxjO45rXKd NaN NaN NaN https://twitter.com/dog_rates/status/706538006853918722/photo/1 11 10 Oliver None None None None
1319 706516534877929472 NaN NaN 2016-03-06 16:27:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 https://t.co/KUS0xl7XIp NaN NaN NaN https://twitter.com/dog_rates/status/706516534877929472/photo/1 12 10 None None None None None
1320 706346369204748288 NaN NaN 2016-03-06 05:11:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Koda. She's a Beneboom Cumberwiggle. 12/10 petable as hell https://t.co/VZV6oMJmU6 NaN NaN NaN https://twitter.com/dog_rates/status/706346369204748288/photo/1,https://twitter.com/dog_rates/status/706346369204748288/photo/1 12 10 Koda None None None None
1321 706310011488698368 NaN NaN 2016-03-06 02:46:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf NaN NaN NaN https://twitter.com/dog_rates/status/706310011488698368/photo/1,https://twitter.com/dog_rates/status/706310011488698368/photo/1 12 10 None None None pupper None
1322 706291001778950144 NaN NaN 2016-03-06 01:31:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 https://t.co/qy33OBcexg NaN NaN NaN https://twitter.com/dog_rates/status/706291001778950144/photo/1,https://twitter.com/dog_rates/status/706291001778950144/photo/1 11 10 None None None None None
1323 706265994973601792 NaN NaN 2016-03-05 23:51:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kara. She's been trying to solve that thing for 3 days. "I don't have thumbs," she said. 11/10 solid effort https://t.co/lA6a8GefrV NaN NaN NaN https://twitter.com/dog_rates/status/706265994973601792/photo/1 11 10 Kara None None None None
1324 706169069255446529 NaN NaN 2016-03-05 17:26:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> He was doing his best. 12/10 I'll be his lawyer\nhttps://t.co/WN4C6miCzR NaN NaN NaN https://twitter.com/wgnnews/status/706165920809492480 12 10 None None None None None
1325 706166467411222528 NaN NaN 2016-03-05 17:16:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable https://t.co/sA7P3JSqiv NaN NaN NaN https://twitter.com/dog_rates/status/706166467411222528/photo/1 7 10 Dexter None None None None
1326 706153300320784384 NaN NaN 2016-03-05 16:24:01 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Layla. She's giving you a standing ovation.13/10 just magnificent (vid by @CSBrzezinski) https://t.co/KxYXHUHUi2 NaN NaN NaN https://vine.co/v/iXidJXBJ3P9 13 10 Layla None None None None
1327 705975130514706432 NaN NaN 2016-03-05 04:36:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Adele. Her tongue flies out of her mouth at random. It's a debilitating illness. 10/10 stay strong pupper https://t.co/cfn81n3FLO NaN NaN NaN https://twitter.com/dog_rates/status/705975130514706432/photo/1,https://twitter.com/dog_rates/status/705975130514706432/photo/1 10 10 Adele None None pupper None
1328 705970349788291072 NaN NaN 2016-03-05 04:17:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lucy. She's a Venetian Kerploof. Supposed to be navigating. Quite irresponsible. Fancy ass collar tho 12/10 https://t.co/8tjnz1L8DI NaN NaN NaN https://twitter.com/dog_rates/status/705970349788291072/photo/1 12 10 Lucy None None None None
1329 705898680587526145 NaN NaN 2016-03-04 23:32:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Max. He's a Fallopian Cephalopuff. Eyes are magical af. Lil dandruff problem. No big deal 10/10 would still pet https://t.co/c67nUjwmFs NaN NaN NaN https://twitter.com/dog_rates/status/705898680587526145/photo/1,https://twitter.com/dog_rates/status/705898680587526145/photo/1 10 10 Max None None None None
1330 705786532653883392 7.032559e+17 4.196984e+09 2016-03-04 16:06:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Seriously, add us 🐶 11/10 for sad wet pupper https://t.co/xwPE9faVZR NaN NaN NaN https://twitter.com/dog_rates/status/705786532653883392/photo/1 11 10 None None None pupper None
1331 705591895322394625 NaN NaN 2016-03-04 03:13:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 https://t.co/nPTBsdm3BF NaN NaN NaN https://twitter.com/dog_rates/status/705591895322394625/photo/1 11 10 None None None None None
1332 705475953783398401 NaN NaN 2016-03-03 19:32:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Zara. She found a sandal and couldn't be happier. 12/10 great work https://t.co/zQUuVu812n NaN NaN NaN https://twitter.com/dog_rates/status/705475953783398401/photo/1,https://twitter.com/dog_rates/status/705475953783398401/photo/1 12 10 Zara None None None None
1333 705442520700944385 NaN NaN 2016-03-03 17:19:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cooper. He only wakes up to switch gears. 12/10 helpful af https://t.co/EEIkAGVY64 NaN NaN NaN https://twitter.com/dog_rates/status/705442520700944385/photo/1 12 10 Cooper None None None None
1334 705428427625635840 NaN NaN 2016-03-03 16:23:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ambrose. He's an Alfalfa Ballyhoo. Draws pistol fast af. Pretty much runs the frontier. 11/10 lethal pupper https://t.co/ih6epBOxIA NaN NaN NaN https://twitter.com/dog_rates/status/705428427625635840/photo/1 11 10 Ambrose None None pupper None
1335 705239209544720384 NaN NaN 2016-03-03 03:51:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jimothy. He lost his body during the the Third Crusade (tragic). 11/10 heroic af tho https://t.co/wnsblfu7XE NaN NaN NaN https://twitter.com/dog_rates/status/705239209544720384/photo/1 11 10 Jimothy None None None None
1336 705223444686888960 NaN NaN 2016-03-03 02:49:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bode. He's a heavy sleeper. 9/10 https://t.co/YMkxhGWUqv NaN NaN NaN https://twitter.com/dog_rates/status/705223444686888960/photo/1 9 10 Bode None None None None
1337 705102439679201280 NaN NaN 2016-03-02 18:48:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Terrenth. He just stubbed his toe. 10/10 deep breaths Terrenth https://t.co/Pg18CDFC7Z NaN NaN NaN https://twitter.com/dog_rates/status/705102439679201280/photo/1 10 10 Terrenth None None None None
1338 705066031337840642 NaN NaN 2016-03-02 16:23:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Reese. He's a Chilean Sohcahtoa. Loves to swing. Never sure what to do with his feet. 12/10 huggable af https://t.co/VA6jnNUyuW NaN NaN NaN https://twitter.com/dog_rates/status/705066031337840642/photo/1 12 10 Reese None None None None
1339 704871453724954624 6.671522e+17 4.196984e+09 2016-03-02 03:30:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU NaN NaN NaN https://twitter.com/dog_rates/status/704871453724954624/photo/1 12 10 None None None None None
1340 704859558691414016 NaN NaN 2016-03-02 02:43:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu NaN NaN NaN https://twitter.com/dog_rates/status/704859558691414016/photo/1 10 10 a None None pupper None
1341 704847917308362754 NaN NaN 2016-03-02 01:56:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Yes hi could I get a number 4 with no pickles" ...12/10 https://t.co/kQPVxqA3gq NaN NaN NaN https://twitter.com/dog_rates/status/704847917308362754/photo/1 12 10 None None None None None
1342 704819833553219584 NaN NaN 2016-03-02 00:05:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chesterson. He's a Bolivian Scoop Dog. Incredibly portable. Can't bark for shit tho. 7/10 would still pet https://t.co/EatAd8JhyW NaN NaN NaN https://twitter.com/dog_rates/status/704819833553219584/photo/1 7 10 Chesterson None None None None
1343 704761120771465216 NaN NaN 2016-03-01 20:11:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://t.co/Lu0ECu5tO5 NaN NaN NaN https://twitter.com/dog_rates/status/704761120771465216/photo/1,https://twitter.com/dog_rates/status/704761120771465216/photo/1 13 10 None None None pupper None
1344 704499785726889984 NaN NaN 2016-03-01 02:53:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you wake up from a long nap and have no idea who you are. 12/10 https://t.co/dlF93GLnDc NaN NaN NaN https://twitter.com/dog_rates/status/704499785726889984/photo/1 12 10 None None None None None
1345 704491224099647488 7.044857e+17 2.878549e+07 2016-03-01 02:19:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 13/10 hero af\n@ABC NaN NaN NaN NaN 13 10 None None None None None
1346 704480331685040129 NaN NaN 2016-03-01 01:36:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Lucia. She's a Cumulonimbus Floofmallow. Only has two legs tho (unfortunate). 11/10 would definitely still pet https://t.co/qv6qlEUCEe NaN NaN NaN https://twitter.com/dog_rates/status/704480331685040129/photo/1 11 10 Lucia None None None None
1347 704364645503647744 NaN NaN 2016-02-29 17:56:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Bisquick. He's a Beneplop Cumbersnug. Even smiles when wet. 12/10 I'd steal Bisquick https://t.co/5zX5XD3i6K NaN NaN NaN https://twitter.com/dog_rates/status/704364645503647744/photo/1,https://twitter.com/dog_rates/status/704364645503647744/photo/1 12 10 Bisquick None None None None
1348 704347321748819968 NaN NaN 2016-02-29 16:47:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ralphson. He's very confused. Wondering why he's sitting on Santa's lap in February. 10/10 stay woke pupper https://t.co/INphk4ltkZ NaN NaN NaN https://twitter.com/dog_rates/status/704347321748819968/photo/1 10 10 Ralphson None None pupper None
1349 704134088924532736 NaN NaN 2016-02-29 02:40:23 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This sneezy pupper is just adorable af. 12/10 (vid by @gwilks1) https://t.co/h5aI0Tim4j NaN NaN NaN https://vine.co/v/igW2OEwu9vg 12 10 None None None pupper None
1350 704113298707505153 NaN NaN 2016-02-29 01:17:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Stanley. He's an inverted Uzbekistani water pup. Hella exotic. Floats around all day. 8/10 I want to be Stanley https://t.co/XpYMBQ1FD8 NaN NaN NaN https://twitter.com/dog_rates/status/704113298707505153/photo/1,https://twitter.com/dog_rates/status/704113298707505153/photo/1 8 10 Stanley None None None None
1351 704054845121142784 NaN NaN 2016-02-28 21:25:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa NaN NaN NaN https://twitter.com/dog_rates/status/704054845121142784/photo/1 60 50 a None None None None
1352 703774238772166656 NaN NaN 2016-02-28 02:50:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "YOU CAN'T HANDLE THE TRUTH" both 10/10 https://t.co/ZvxdB4i9AG NaN NaN NaN https://twitter.com/dog_rates/status/703774238772166656/photo/1 10 10 None None None None None
1353 703769065844768768 NaN NaN 2016-02-28 02:29:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af https://t.co/QQZDCYl6zT NaN NaN NaN https://twitter.com/dog_rates/status/703769065844768768/photo/1,https://twitter.com/dog_rates/status/703769065844768768/photo/1 10 10 None None None None None
1354 703631701117943808 NaN NaN 2016-02-27 17:24:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bella. Based on this picture she's at least 8ft tall (wow)! Must be rare. 11/10 would pet on tippy toes https://t.co/XTVbSRdvcp NaN NaN NaN https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1 11 10 Bella None None None None
1355 703611486317502464 NaN NaN 2016-02-27 16:03:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Scooter. He's experiencing the pupper equivalent of dropping ur phone in a toilet 10/10 put it in some rice pup https://t.co/JSmX1FIEaW NaN NaN NaN https://twitter.com/dog_rates/status/703611486317502464/photo/1 10 10 Scooter None None pupper None
1356 703425003149250560 7.030419e+17 4.196984e+09 2016-02-27 03:42:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC NaN NaN NaN https://twitter.com/dog_rates/status/703425003149250560/photo/1 9 10 None None None None None
1357 703407252292673536 NaN NaN 2016-02-27 02:32:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper doesn't understand gates. 10/10 so close https://t.co/GUbFF4o6dZ NaN NaN NaN https://twitter.com/dog_rates/status/703407252292673536/photo/1 10 10 None None None pupper None
1358 703382836347330562 NaN NaN 2016-02-27 00:55:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charlie. He's a West Side Niddlewog. Mucho fluffy. 12/10 would pet so damn well https://t.co/B9dOrmnPVt NaN NaN NaN https://twitter.com/dog_rates/status/703382836347330562/photo/1,https://twitter.com/dog_rates/status/703382836347330562/photo/1 12 10 Charlie None None None None
1359 703356393781329922 NaN NaN 2016-02-26 23:10:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 https://t.co/8rc5I22bBf NaN NaN NaN https://twitter.com/dog_rates/status/703356393781329922/photo/1 9 10 Socks None None None None
1360 703268521220972544 NaN NaN 2016-02-26 17:20:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy Friday here's a sleepy pupper 12/10 https://t.co/eBcqv9SPkY NaN NaN NaN https://twitter.com/dog_rates/status/703268521220972544/photo/1 12 10 None None None pupper None
1361 703079050210877440 NaN NaN 2016-02-26 04:48:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW NaN NaN NaN https://twitter.com/dog_rates/status/703079050210877440/photo/1,https://twitter.com/dog_rates/status/703079050210877440/photo/1 11 10 a None None None None
1362 703041949650034688 NaN NaN 2016-02-26 02:20:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR NaN NaN NaN https://twitter.com/dog_rates/status/703041949650034688/photo/1 10 10 an None None None None
1363 702932127499816960 NaN NaN 2016-02-25 19:04:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chip. He's an Upper West Nile Pantaloon. Extremely deadly. Will rip your throat out. 6/10 might still pet https://t.co/LUFnwzznaV NaN NaN NaN https://twitter.com/dog_rates/status/702932127499816960/photo/1 6 10 Chip None None None None
1364 702899151802126337 NaN NaN 2016-02-25 16:53:11 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Say hello to Luna. Her tongue is malfunctioning (tragic). 12/10 please enjoy (vid by @LilyArtz) https://t.co/F9aLnADVIw NaN NaN NaN https://vine.co/v/i6iIrBwnTFI 12 10 Luna None None None None
1365 702684942141153280 NaN NaN 2016-02-25 02:42:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lucy. She's sick of these bullshit generalizations 11/10 https://t.co/d2b5C2R0aO NaN NaN NaN https://twitter.com/dog_rates/status/702684942141153280/photo/1 11 10 Lucy None None None None
1366 702671118226825216 NaN NaN 2016-02-25 01:47:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Rambo &amp; Kiwi. Rambo's the pup with the sharp toes &amp; rad mohawk. One stays woke while one sleeps. 10/10 for both https://t.co/MpH1Fe9LhZ NaN NaN NaN https://twitter.com/dog_rates/status/702671118226825216/photo/1 10 10 Rambo None None None None
1367 702598099714314240 NaN NaN 2016-02-24 20:56:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sansa. She's gotten too big for her chair. Not so smol anymore. 11/10 once a pupper, always a pupper https://t.co/IpAoztle2s NaN NaN NaN https://twitter.com/dog_rates/status/702598099714314240/photo/1 11 10 Sansa None None pupper None
1368 702539513671897089 NaN NaN 2016-02-24 17:04:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 NaN NaN NaN https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1 12 10 a None None None None
1369 702332542343577600 NaN NaN 2016-02-24 03:21:41 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Rudy. He's going to be a star. 13/10 talented af (vid by @madalynrossi) https://t.co/Dph4FDGoMd NaN NaN NaN https://vine.co/v/irlDujgwOjd 13 10 Rudy None None None None
1370 702321140488925184 NaN NaN 2016-02-24 02:36:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 NaN NaN NaN https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1 12 10 None None None None None
1371 702276748847800320 NaN NaN 2016-02-23 23:39:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 https://t.co/rSNCEiTtfI NaN NaN NaN https://twitter.com/dog_rates/status/702276748847800320/photo/1 11 10 None None None None None
1372 702217446468493312 NaN NaN 2016-02-23 19:44:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 https://t.co/y35Y1TJERY NaN NaN NaN https://twitter.com/dog_rates/status/702217446468493312/photo/1 9 10 None None None None None
1373 701981390485725185 NaN NaN 2016-02-23 04:06:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Fiji. She's a Powdered Stegafloof. Very rare. 12/10 https://t.co/fZRob6eotY NaN NaN NaN https://twitter.com/dog_rates/status/701981390485725185/photo/1 12 10 Fiji None None None None
1374 701952816642965504 NaN NaN 2016-02-23 02:12:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX NaN NaN NaN https://twitter.com/dog_rates/status/701952816642965504/photo/1 11 10 Rilo None None None None
1375 701889187134500865 NaN NaN 2016-02-22 21:59:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bilbo. He's not emotionally prepared to enter the water. 11/10 don't struggle Bilbo https://t.co/rH9SQgZUnQ NaN NaN NaN https://twitter.com/dog_rates/status/701889187134500865/photo/1 11 10 Bilbo None None None None
1376 701805642395348998 NaN NaN 2016-02-22 16:27:58 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Please pray for this pupper. Nothing wrong with her she just can't stop getting hit with banana peels. 11/10 https://t.co/8sdVenUAqr NaN NaN NaN https://vine.co/v/ivV6Y37mH5Z 11 10 None None None pupper None
1377 701601587219795968 NaN NaN 2016-02-22 02:57:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Coopson. He's a Blingin Schnitzel. Built fence himself. One ear is slightly defective. 10/10 would still pet https://t.co/MWw3pVMhJA NaN NaN NaN https://twitter.com/dog_rates/status/701601587219795968/photo/1 10 10 Coopson None None None None
1378 701570477911896070 NaN NaN 2016-02-22 00:53:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx NaN NaN NaN https://twitter.com/dog_rates/status/701570477911896070/photo/1,https://twitter.com/dog_rates/status/701570477911896070/photo/1 9 10 Yoda None None None None
1379 701545186879471618 NaN NaN 2016-02-21 23:13:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Millie. She's practicing her dive form for Rio. It's nearly perfect. Dedicated af. 10/10 go for gold pupper https://t.co/SDVkc4m96M NaN NaN NaN https://twitter.com/dog_rates/status/701545186879471618/photo/1 10 10 Millie None None pupper None
1380 701214700881756160 NaN NaN 2016-02-21 01:19:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL NaN NaN NaN https://twitter.com/dog_rates/status/701214700881756160/photo/1 12 10 None None None None None
1381 700890391244103680 NaN NaN 2016-02-20 03:51:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chet. He's dapper af. His owners want him to learn how to dance but his true passion is potato guns. 11/10 https://t.co/TBv7Qh1zxZ NaN NaN NaN https://twitter.com/dog_rates/status/700890391244103680/photo/1 11 10 Chet None None None None
1382 700864154249383937 NaN NaN 2016-02-20 02:06:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW NaN NaN NaN https://twitter.com/dog_rates/status/700864154249383937/photo/1 12 10 a None None pupper None
1383 700847567345688576 NaN NaN 2016-02-20 01:00:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Crouton. He's a Galapagos Boonwiddle. Has a legendary tongue (most Boonwiddles do). Excellent stuff 10/10 https://t.co/110Eeg7KW3 NaN NaN NaN https://twitter.com/dog_rates/status/700847567345688576/photo/1 10 10 Crouton None None None None
1384 700796979434098688 NaN NaN 2016-02-19 21:39:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Daniel. He's a neat pup. Exotic af. Custom paws. Leaps unannounced. Would totally pet. 7/10 daaamn Daniel https://t.co/5XaR0kj8cr NaN NaN NaN https://twitter.com/dog_rates/status/700796979434098688/photo/1 7 10 Daniel None None None None
1385 700747788515020802 NaN NaN 2016-02-19 18:24:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU NaN NaN NaN https://twitter.com/dog_rates/status/700747788515020802/photo/1 11 10 very None None None None
1386 700518061187723268 NaN NaN 2016-02-19 03:11:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Vincent. He's the man your girl is with when she's not with you. 10/10 https://t.co/JQGMP7kzjD NaN NaN NaN https://twitter.com/dog_rates/status/700518061187723268/photo/1 10 10 Vincent None None None None
1387 700505138482569216 NaN NaN 2016-02-19 02:20:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kaia. She's just cute as hell. 12/10 I'd kill for Kaia https://t.co/5fMdH8GFaq NaN NaN NaN https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1 12 10 Kaia None None None None
1388 700462010979500032 NaN NaN 2016-02-18 23:28:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Murphy. He's a mini golden retriever. Missing two legs (tragic). Mouth sharp. Looks rather perturbed. 6/10 https://t.co/ALO02IAKCn NaN NaN NaN https://twitter.com/dog_rates/status/700462010979500032/photo/1 6 10 Murphy None None None None
1389 700167517596164096 NaN NaN 2016-02-18 03:58:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dotsy. She's stuck as hell. 10/10 https://t.co/A0h4lnhU4s NaN NaN NaN https://twitter.com/dog_rates/status/700167517596164096/photo/1 10 10 Dotsy None None None None
1390 700151421916807169 NaN NaN 2016-02-18 02:54:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> If a pupper gave that to me I'd probably start shaking and faint from all the joy. 11/10 https://t.co/o9aJVPB25n NaN NaN NaN https://twitter.com/dog_rates/status/700151421916807169/photo/1 11 10 None None None pupper None
1391 700143752053182464 NaN NaN 2016-02-18 02:24:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https://t.co/Fbdr5orUrJ NaN NaN NaN https://twitter.com/dog_rates/status/700143752053182464/photo/1 10 10 None None None pupper None
1392 700062718104104960 NaN NaN 2016-02-17 21:02:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Eazy-E. He's colorful af. Must be rare. Submerged in Sprite (rad). Doesn't perform well when not wet. 6/10 https://t.co/UtFI7eUCjE NaN NaN NaN https://twitter.com/dog_rates/status/700062718104104960/photo/1 6 10 Eazy None None None None
1393 700029284593901568 NaN NaN 2016-02-17 18:49:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Coops. His ship is taking on water. Sound the alarm. Much distress. Requesting immediate assistance. 10/10 https://t.co/8Nuny4lLE3 NaN NaN NaN https://twitter.com/dog_rates/status/700029284593901568/photo/1 10 10 Coops None None None None
1394 700002074055016451 NaN NaN 2016-02-17 17:01:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1 NaN NaN NaN https://twitter.com/dog_rates/status/700002074055016451/photo/1 9 10 Thumas None None None None
1395 699801817392291840 NaN NaN 2016-02-17 03:45:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cooper. He began to tear up when his bone was taken from him. 11/10 stay strong pupper https://t.co/qI8yvqKG02 NaN NaN NaN https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1 11 10 Cooper None None pupper None
1396 699788877217865730 NaN NaN 2016-02-17 02:54:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Nala. She's a Freckled High Bruschetta. Petable af. 12/10 https://t.co/5bjrIRqByp NaN NaN NaN https://twitter.com/dog_rates/status/699788877217865730/photo/1 12 10 Nala None None None None
1397 699779630832685056 NaN NaN 2016-02-17 02:17:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Take all my money. 10/10 https://t.co/B28ebc5LzQ NaN NaN NaN https://twitter.com/dog_rates/status/699779630832685056/photo/1,https://twitter.com/dog_rates/status/699779630832685056/photo/1 10 10 None None None None None
1398 699775878809702401 NaN NaN 2016-02-17 02:02:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Fillup. Spaghetti is his main weakness. Also pissed because he's rewarded with cat treats 11/10 it'll be ok pup https://t.co/TEHu55ZQKD NaN NaN NaN https://twitter.com/dog_rates/status/699775878809702401/photo/1 11 10 Fillup None None None None
1399 699691744225525762 NaN NaN 2016-02-16 20:28:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dave. He's a tropical pup. Short lil legs (dachshund mix?) Excels underwater, but refuses to eat kibble 5/10 https://t.co/ZJnCxlIf62 NaN NaN NaN https://twitter.com/dog_rates/status/699691744225525762/photo/1 5 10 Dave None None None None
1400 699446877801091073 NaN NaN 2016-02-16 04:15:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Archie. He's undercover in all these pics. Not actually a bee, cow, or Hawaiian. Sneaky af. 12/10 https://t.co/9fojElzIxx NaN NaN NaN https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1 12 10 Archie None None None None
1401 699434518667751424 NaN NaN 2016-02-16 03:25:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 https://t.co/hTE2PEwGvi NaN NaN NaN https://twitter.com/dog_rates/status/699434518667751424/photo/1 12 10 None None None pupper None
1402 699423671849451520 NaN NaN 2016-02-16 02:42:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Don't ever talk to me or my son again." ...both 10/10 https://t.co/b8ncwl6TlE NaN NaN NaN https://twitter.com/dog_rates/status/699423671849451520/photo/1 10 10 None None None None None
1403 699413908797464576 NaN NaN 2016-02-16 02:04:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS NaN NaN NaN https://twitter.com/dog_rates/status/699413908797464576/photo/1 11 10 Miley None None None None
1404 699370870310113280 NaN NaN 2016-02-15 23:13:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Calbert. He doesn't have enough legs. Wtf Calbert. Still havin a blast tho. 11/10 would pet extra well https://t.co/iNFIHvcVur NaN NaN NaN https://twitter.com/dog_rates/status/699370870310113280/photo/1 11 10 Calbert None None None None
1405 699323444782047232 NaN NaN 2016-02-15 20:04:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "I'm bathing the children what do you want?" ...both 10/10 https://t.co/Rizm1LWh4z NaN NaN NaN https://twitter.com/dog_rates/status/699323444782047232/photo/1 10 10 None None None None None
1406 699088579889332224 NaN NaN 2016-02-15 04:31:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charl. He's a bully. Chucks that dumbbell around like its nothing. Sharp neck. Exceptionally unfluffy. 3/10 https://t.co/VfLoDZecJ7 NaN NaN NaN https://twitter.com/dog_rates/status/699088579889332224/photo/1 3 10 Charl None None None None
1407 699079609774645248 NaN NaN 2016-02-15 03:55:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 https://t.co/A2j2StfNgL NaN NaN NaN https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1 8 10 Reagan None None None None
1408 699072405256409088 NaN NaN 2016-02-15 03:27:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> ERMAHGERD 12/10 please enjoy https://t.co/7WrAWKdBac NaN NaN NaN https://twitter.com/dog_rates/status/699072405256409088/video/1 12 10 None None None None None
1409 699060279947165696 NaN NaN 2016-02-15 02:38:53 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Yukon. He pukes rainbows. 12/10 magical af https://t.co/n6wND1v7il NaN NaN NaN https://vine.co/v/inlmMHxtqDD 12 10 Yukon None None None None
1410 699036661657767936 NaN NaN 2016-02-15 01:05:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all https://t.co/7u6VnZ1UFe NaN NaN NaN https://twitter.com/dog_rates/status/699036661657767936/photo/1 13 10 None None None pupper None
1411 698989035503689728 NaN NaN 2016-02-14 21:55:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 NaN NaN NaN https://twitter.com/dog_rates/status/698989035503689728/photo/1 13 10 Oliver None None None None
1412 698953797952008193 NaN NaN 2016-02-14 19:35:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet CeCe. She wanted to take a selfie before her first day as a lumberjack. 11/10 crushing traditional gender roles https://t.co/oW9XMYG3F4 NaN NaN NaN https://twitter.com/dog_rates/status/698953797952008193/photo/1 11 10 CeCe None None None None
1413 698907974262222848 NaN NaN 2016-02-14 16:33:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This dog is never sure if he's doing the right thing. 10/10 https://t.co/GXq43zFfBu NaN NaN NaN https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1 10 10 None None None None None
1414 698710712454139905 NaN NaN 2016-02-14 03:29:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cuddles. He's not entirely sure how doors work. 10/10 I believe in you Cuddles https://t.co/rKjK88D05Z NaN NaN NaN https://twitter.com/dog_rates/status/698710712454139905/photo/1 10 10 Cuddles None None None None
1415 698703483621523456 NaN NaN 2016-02-14 03:01:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet https://t.co/hEH19t1eFp NaN NaN NaN https://twitter.com/dog_rates/status/698703483621523456/photo/1 7 10 Rusty None None None None
1416 698635131305795584 NaN NaN 2016-02-13 22:29:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) https://t.co/rb8nzVNh7F NaN NaN NaN https://twitter.com/dog_rates/status/698635131305795584/video/1 12 10 None None None None None
1417 698549713696649216 NaN NaN 2016-02-13 16:50:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude https://t.co/EPdQquc1dG NaN NaN NaN https://twitter.com/dog_rates/status/698549713696649216/photo/1 9 10 Claude None None None None
1418 698355670425473025 NaN NaN 2016-02-13 03:59:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jessiga. She's a Tasmanian McCringleberry. Selfies make her uncomfortable. 10/10 would pet in time of need https://t.co/MrdPZz1CGk NaN NaN NaN https://twitter.com/dog_rates/status/698355670425473025/photo/1 10 10 Jessiga None None None None
1419 698342080612007937 NaN NaN 2016-02-13 03:05:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Maximus. He's training for the tetherball world championship. The grind never stops. 11/10 (vid by @Amuly21) https://t.co/VmFfWMjNkp NaN NaN NaN https://twitter.com/dog_rates/status/698342080612007937/video/1 11 10 Maximus None None None None
1420 698262614669991936 NaN NaN 2016-02-12 21:49:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Franklin. He's a yoga master. Trying to get rid of those rolls. Dedicated af. 11/10 keep it up pup https://t.co/S712MJXulD NaN NaN NaN https://twitter.com/dog_rates/status/698262614669991936/photo/1 11 10 Franklin None None None None
1421 698195409219559425 NaN NaN 2016-02-12 17:22:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Beau &amp; Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https://t.co/GPaoH5qWEk NaN NaN NaN https://twitter.com/dog_rates/status/698195409219559425/photo/1 9 10 Beau None None None None
1422 698178924120031232 NaN NaN 2016-02-12 16:16:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lily. She accidentally dropped all her Kohl's cash overboard. Day officially ruined. 10/10 hang in there pup https://t.co/BJbtCqGwZK NaN NaN NaN https://twitter.com/dog_rates/status/698178924120031232/photo/1 10 10 Lily None None None None
1423 697995514407682048 NaN NaN 2016-02-12 04:07:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Dammit hooman quit playin I jus wanna wheat thin" 11/10 https://t.co/yAASRDPJnQ NaN NaN NaN https://twitter.com/dog_rates/status/697995514407682048/photo/1 11 10 None None None None None
1424 697990423684476929 NaN NaN 2016-02-12 03:47:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Doug. He's a Draconian Jabbawockee. Rad tongue. Ears are borderline legendary 11/10 would pet with a purpose https://t.co/MVvbQW88Pv NaN NaN NaN https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1 11 10 Doug None None None None
1425 697943111201378304 NaN NaN 2016-02-12 00:39:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cassie. She goes door to door trying to find the owner of this baguette. No luck so far. 10/10 https://t.co/e8bj97CisO NaN NaN NaN https://twitter.com/dog_rates/status/697943111201378304/photo/1 10 10 Cassie None None None None
1426 697881462549430272 NaN NaN 2016-02-11 20:34:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Carter. He wakes up in the morning and pisses excellence. 10/10 best there is plain and simple https://t.co/pHktDjpFr8 NaN NaN NaN https://twitter.com/dog_rates/status/697881462549430272/photo/1 10 10 Carter None None None None
1427 697630435728322560 NaN NaN 2016-02-11 03:57:11 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Pls make sure ur dogs have gone through some barkour training b4 they attempt stunts like this. 8/10 https://t.co/VmF35YvtqP NaN NaN NaN https://vine.co/v/in7ZzHPKzWz 8 10 None None None None None
1428 697616773278015490 NaN NaN 2016-02-11 03:02:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 https://t.co/Jxd5pR02Cn NaN NaN NaN https://twitter.com/dog_rates/status/697616773278015490/photo/1,https://twitter.com/dog_rates/status/697616773278015490/photo/1 11 10 None None None pupper None
1429 697596423848730625 NaN NaN 2016-02-11 01:42:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 https://t.co/5USjFjKI7Z NaN NaN NaN https://twitter.com/dog_rates/status/697596423848730625/photo/1 11 10 None None None pupper None
1430 697575480820686848 NaN NaN 2016-02-11 00:18:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ole. He's not sure how to gravity. 8/10 https://t.co/PsqqotpBBQ NaN NaN NaN https://twitter.com/dog_rates/status/697575480820686848/photo/1 8 10 Ole None None None None
1431 697516214579523584 NaN NaN 2016-02-10 20:23:19 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Say hello to Pherb. He does parkour. 9/10 https://t.co/LHFfUyLBZT NaN NaN NaN https://vine.co/v/i1LriMBmX6W 9 10 Pherb None None None None
1432 697482927769255936 NaN NaN 2016-02-10 18:11:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Blipson. He's a Doowap Hufflepuff. That Ugg is his temporary home while he's struggling with unemployment 11/10 https://t.co/YKvt0J5MXr NaN NaN NaN https://twitter.com/dog_rates/status/697482927769255936/photo/1 11 10 Blipson None None None None
1433 697463031882764288 NaN NaN 2016-02-10 16:51:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ NaN NaN NaN https://twitter.com/dog_rates/status/697463031882764288/photo/1 44 40 None None None None None
1434 697270446429966336 NaN NaN 2016-02-10 04:06:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bentley. He got stuck on his 3rd homework problem. Picturing the best case scenario if he drops out. 10/10 https://t.co/7rS33sCKMS NaN NaN NaN https://twitter.com/dog_rates/status/697270446429966336/photo/1 10 10 Bentley None None None None
1435 697259378236399616 NaN NaN 2016-02-10 03:22:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 NaN NaN NaN https://twitter.com/dog_rates/status/697259378236399616/photo/1 8 10 getting None None None None
1436 697255105972801536 NaN NaN 2016-02-10 03:05:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Charlie. He likes to kiss all the big milk dogs with the rad earrings. Passionate af. 10/10 just a great guy https://t.co/Oe0XSGmfoP NaN NaN NaN https://twitter.com/dog_rates/status/697255105972801536/photo/1 10 10 Charlie None None None None
1437 697242256848379904 NaN NaN 2016-02-10 02:14:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oakley. He has a massive tumor growing on his head. Seems benign tho. 10/10 would pet around tumor https://t.co/7GQ7BTxywN NaN NaN NaN https://twitter.com/dog_rates/status/697242256848379904/photo/1 10 10 Oakley None None None None
1438 696900204696625153 NaN NaN 2016-02-09 03:35:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rosie. She's a Benebark Cumberpatch. Sleepy af. 12/10 would snug for days https://t.co/NKuON5Al8i NaN NaN NaN https://twitter.com/dog_rates/status/696900204696625153/photo/1 12 10 Rosie None None None None
1439 696894894812565505 NaN NaN 2016-02-09 03:14:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 https://t.co/RJvUjgGH5z NaN NaN NaN https://twitter.com/dog_rates/status/696894894812565505/photo/1 9 10 None None None None None
1440 696886256886657024 NaN NaN 2016-02-09 02:40:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys I found the dog from Up. 12/10 https://t.co/WqoZtX9jmJ NaN NaN NaN https://twitter.com/dog_rates/status/696886256886657024/photo/1 12 10 None None None None None
1441 696877980375769088 NaN NaN 2016-02-09 02:07:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Misty. She's in a predicament. Not sure what next move should be. 9/10 stay calm pupper I'm comin https://t.co/XhR7PAgcwF NaN NaN NaN https://twitter.com/dog_rates/status/696877980375769088/photo/1 9 10 Misty None None pupper None
1442 696754882863349760 NaN NaN 2016-02-08 17:58:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Reptar. He specifically asked for his skis to have four bindings. He's not happy. Quite perturbed tbh. 10/10 https://t.co/l9k7TPP7Tp NaN NaN NaN https://twitter.com/dog_rates/status/696754882863349760/photo/1 10 10 Reptar None None None None
1443 696744641916489729 NaN NaN 2016-02-08 17:17:22 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Klevin. He doesn't want his family brainwashed by mainstream media. 10/10 (vid by @AshtonHose) https://t.co/ghhbMAFPW8 NaN NaN NaN https://vine.co/v/i1wrljBUjAu 10 10 Klevin None None None None
1444 696713835009417216 NaN NaN 2016-02-08 15:14:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Trevith. He's a Swiss Mountain Roadwoof. Breeze too powerful. 9/10 stay strong pupper https://t.co/6J8Ibwy1X6 NaN NaN NaN https://twitter.com/dog_rates/status/696713835009417216/photo/1 9 10 Trevith None None pupper None
1445 696518437233913856 NaN NaN 2016-02-08 02:18:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Oh my god 10/10 for every little hot dog pupper NaN NaN NaN NaN 10 10 None None None pupper None
1446 696490539101908992 6.964887e+17 4.196984e+09 2016-02-08 00:27:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After reading the comments I may have overestimated this pup. Downgraded to a 1/10. Please forgive me NaN NaN NaN NaN 1 10 None None None None None
1447 696488710901260288 NaN NaN 2016-02-08 00:20:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 12/10 revolutionary af https://t.co/zKzq4nIY86 NaN NaN NaN https://twitter.com/dog_rates/status/696488710901260288/photo/1 12 10 None None None None None
1448 696405997980676096 NaN NaN 2016-02-07 18:51:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb https://t.co/CIFLjiTFwZ NaN NaN NaN https://twitter.com/dog_rates/status/696405997980676096/photo/1 7 10 Berb None None None None
1449 696100768806522880 NaN NaN 2016-02-06 22:38:50 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This poor pupper has been stuck in a vortex since last week. Please keep her in your thoughts. 10/10 https://t.co/7ODQWHwYDx NaN NaN NaN https://vine.co/v/i1KWj0vbvA9 10 10 None None None pupper None
1450 695816827381944320 NaN NaN 2016-02-06 03:50:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a dog enjoying a sunset. 11/10 would trade lives with https://t.co/VsQdLxrv9h NaN NaN NaN https://twitter.com/dog_rates/status/695816827381944320/photo/1 11 10 None None None None None
1451 695794761660297217 NaN NaN 2016-02-06 02:22:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wyatt. His throne is modeled after him. 13/10 Wyatt is a very big deal https://t.co/PccQ1CFEDd NaN NaN NaN https://twitter.com/dog_rates/status/695794761660297217/photo/1 13 10 Wyatt None None None None
1452 695767669421768709 6.753494e+17 4.196984e+09 2016-02-06 00:35:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG NaN NaN NaN https://twitter.com/dog_rates/status/695767669421768709/photo/1 13 10 None None None None None
1453 695629776980148225 NaN NaN 2016-02-05 15:27:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup https://t.co/NIvxgSQ9BS NaN NaN NaN https://twitter.com/dog_rates/status/695629776980148225/photo/1,https://twitter.com/dog_rates/status/695629776980148225/photo/1 8 10 Calvin None None None None
1454 695446424020918272 NaN NaN 2016-02-05 03:18:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af https://t.co/f9qlKiv39T NaN NaN NaN https://twitter.com/dog_rates/status/695446424020918272/photo/1 12 10 None None None None None
1455 695409464418041856 NaN NaN 2016-02-05 00:51:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bob. He just got back from his job interview and realized his ear was inside-out the whole time. 10/10 https://t.co/lORINwFXIV NaN NaN NaN https://twitter.com/dog_rates/status/695409464418041856/photo/1 10 10 Bob None None None None
1456 695314793360662529 NaN NaN 2016-02-04 18:35:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Colin. He really likes green beans. It's tearing his family apart. 10/10 please pray for Colin https://t.co/ioFy0cmK03 NaN NaN NaN https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1 10 10 Colin None None None None
1457 695095422348574720 NaN NaN 2016-02-04 04:03:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib NaN NaN NaN https://twitter.com/dog_rates/status/695095422348574720/photo/1 12 10 just None None pupper None
1458 695074328191332352 NaN NaN 2016-02-04 02:40:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lorenzo. He's educated af. Just graduated college. 11/10 poor pupper can't even comprehend his debt https://t.co/dH3GzcjCtQ NaN NaN NaN https://twitter.com/dog_rates/status/695074328191332352/photo/1 11 10 Lorenzo None None pupper None
1459 695064344191721472 NaN NaN 2016-02-04 02:00:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) https://t.co/uaJmNgXR2P NaN NaN NaN https://twitter.com/dog_rates/status/695064344191721472/video/1 4 10 None None None None None
1460 695051054296211456 NaN NaN 2016-02-04 01:07:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 https://t.co/vityMwPKKi NaN NaN NaN https://twitter.com/dog_rates/status/695051054296211456/photo/1,https://twitter.com/dog_rates/status/695051054296211456/photo/1 6 10 Brian None None None None
1461 694925794720792577 NaN NaN 2016-02-03 16:49:55 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Please only send in dogs. This t-rex is very scary. 5/10 ...might still pet (vid by @helizabethmicha) https://t.co/Vn6w5w8TO2 NaN NaN NaN https://vine.co/v/iJvUqWQ166L 5 10 None None None None None
1462 694905863685980160 NaN NaN 2016-02-03 15:30:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Archie. He's a Bisquick Taj Mapaw. Too many people are touching him. It is doing him a discomfort. 10/10 https://t.co/CJJpjTMzPQ NaN NaN NaN https://twitter.com/dog_rates/status/694905863685980160/photo/1 10 10 Archie None None None None
1463 694669722378485760 NaN NaN 2016-02-02 23:52:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://t.co/9mb0P2rjk2 NaN NaN NaN https://twitter.com/dog_rates/status/694669722378485760/photo/1,https://twitter.com/dog_rates/status/694669722378485760/photo/1 12 10 Phil None None None None
1464 694356675654983680 6.706684e+17 4.196984e+09 2016-02-02 03:08:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 https://t.co/SQsEBWxPyG NaN NaN NaN https://twitter.com/dog_rates/status/694356675654983680/photo/1 10 10 None None None pupper None
1465 694352839993344000 NaN NaN 2016-02-02 02:53:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Oliviér. He takes killer selfies. Has a dog of his own. It leaps at random &amp; can't bark for shit. 10/10 &amp; 5/10 https://t.co/6NgsQJuSBJ NaN NaN NaN https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1 10 10 Oliviér None None None None
1466 694342028726001664 NaN NaN 2016-02-02 02:10:14 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> It's okay pup. This happens every time I listen to @adele also. 11/10 (vid by @_larirutschmann) https://t.co/oCImpQuoRb NaN NaN NaN https://vine.co/v/iJWKejYdLlh 11 10 None None None None None
1467 694329668942569472 NaN NaN 2016-02-02 01:21:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper https://t.co/oToIkYnEGn NaN NaN NaN https://twitter.com/dog_rates/status/694329668942569472/photo/1 9 10 Grady None None pupper None
1468 694206574471057408 NaN NaN 2016-02-01 17:11:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 https://t.co/Sd4qAdSRqI NaN NaN NaN https://twitter.com/dog_rates/status/694206574471057408/photo/1 10 10 None None None None None
1469 694183373896572928 NaN NaN 2016-02-01 15:39:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD NaN NaN NaN https://twitter.com/dog_rates/status/694183373896572928/photo/1,https://twitter.com/dog_rates/status/694183373896572928/photo/1 9 10 Lola None None None None
1470 694001791655137281 NaN NaN 2016-02-01 03:38:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chester. He's a Benefloof Cumberbark. Fabulous ears. Nifty shirt. Was probably on sale. Nice hardwood. 11/10 https://t.co/YoII7tWXMT NaN NaN NaN https://twitter.com/dog_rates/status/694001791655137281/photo/1,https://twitter.com/dog_rates/status/694001791655137281/photo/1 11 10 Chester None None None None
1471 693993230313091072 NaN NaN 2016-02-01 03:04:14 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> These lil fellas are the best of friends. 12/10 for both. 1 like = 1 friend (vid by @CassieBrookee15) https://t.co/gzRghPC61H NaN NaN NaN https://vine.co/v/i5ETazP5hrm 12 10 None None None None None
1472 693942351086120961 NaN NaN 2016-01-31 23:42:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kobe. He's a Speckled Rorschach. Requests that someone holds his hand during car rides. 10/10 sick interior https://t.co/LCA6Fr3X2M NaN NaN NaN https://twitter.com/dog_rates/status/693942351086120961/photo/1 10 10 Kobe None None None None
1473 693647888581312512 NaN NaN 2016-01-31 04:11:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 https://t.co/LSTAwTdTaw NaN NaN NaN https://twitter.com/dog_rates/status/693647888581312512/photo/1 7 10 None None None None None
1474 693644216740769793 6.936422e+17 4.196984e+09 2016-01-31 03:57:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> BREAKING PUPDATE: I've just been notified that (if in U.S.) this dog appears to be operating the vehicle. Upgraded to 10/10. Skilled af NaN NaN NaN NaN 10 10 None None None None None
1475 693642232151285760 NaN NaN 2016-01-31 03:49:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly https://t.co/6BS9XEip9a NaN NaN NaN https://twitter.com/dog_rates/status/693642232151285760/photo/1 9 10 Freddery None None None None
1476 693629975228977152 NaN NaN 2016-01-31 03:00:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper is afraid of its own feet. 12/10 would comfort https://t.co/Tn9Mp0oPoJ NaN NaN NaN https://twitter.com/dog_rates/status/693629975228977152/photo/1,https://twitter.com/dog_rates/status/693629975228977152/photo/1 12 10 None None None pupper None
1477 693622659251335168 NaN NaN 2016-01-31 02:31:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you keepin the popcorn bucket in your lap and she reach for some... 10/10 https://t.co/a1IrjaID3X NaN NaN NaN https://twitter.com/dog_rates/status/693622659251335168/photo/1 10 10 None None None None None
1478 693590843962331137 NaN NaN 2016-01-31 00:25:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Phil. He's big af. Currently destroying this nice family home. Completely uncalled for. 3/10 not a good pupper https://t.co/fShNNhBWYx NaN NaN NaN https://twitter.com/dog_rates/status/693590843962331137/photo/1 3 10 Phil None None pupper None
1479 693582294167244802 6.935722e+17 1.198989e+09 2016-01-30 23:51:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Personally I'd give him an 11/10. Not sure why you think you're qualified to rate such a stellar pup.\n@CommonWhiteGirI NaN NaN NaN NaN 11 10 None None None None None
1480 693486665285931008 NaN NaN 2016-01-30 17:31:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lincoln. He doesn't understand his new jacket. 11/10 please enjoy (vid by @GraceIsTheName8) https://t.co/S6cQsIoX27 NaN NaN NaN https://twitter.com/dog_rates/status/693486665285931008/video/1 11 10 Lincoln None None None None
1481 693280720173801472 NaN NaN 2016-01-30 03:52:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sadie and her 2 pups Shebang &amp; Ruffalo. Sadie says single parenting is challenging but rewarding. All 10/10 https://t.co/UzbhwXcLne NaN NaN NaN https://twitter.com/dog_rates/status/693280720173801472/photo/1 10 10 Sadie None None None None
1482 693267061318012928 NaN NaN 2016-01-30 02:58:42 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Oscar. He can wave. Friendly af. 12/10 would totally wave back (IG: Oscar.is.bear) https://t.co/waN6EW0wfM NaN NaN NaN https://vine.co/v/i5n2irFUYWv 12 10 Oscar None None None None
1483 693262851218264065 NaN NaN 2016-01-30 02:41:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 https://t.co/DYUsHtL2aR NaN NaN NaN https://twitter.com/dog_rates/status/693262851218264065/photo/1 11 10 None None None pupper None
1484 693231807727280129 NaN NaN 2016-01-30 00:38:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh https://t.co/bpZsGMqVVP NaN NaN NaN https://twitter.com/dog_rates/status/693231807727280129/photo/1 9 10 Bodie None None None None
1485 693155686491000832 NaN NaN 2016-01-29 19:36:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U NaN NaN NaN https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1 12 10 Dunkin None None None None
1486 693109034023534592 NaN NaN 2016-01-29 16:30:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) https://t.co/NY3cPAZAIM NaN NaN NaN https://twitter.com/dog_rates/status/693109034023534592/video/1 11 10 None None None None None
1487 693095443459342336 NaN NaN 2016-01-29 15:36:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Milo. He doesn't understand your fancy human gestures. Will lick instead. 10/10 can't faze this pupper https://t.co/OhodPIDOpW NaN NaN NaN https://twitter.com/dog_rates/status/693095443459342336/photo/1 10 10 Milo None None pupper None
1488 692919143163629568 NaN NaN 2016-01-29 03:56:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 https://t.co/TMpDHHGspy NaN NaN NaN https://twitter.com/dog_rates/status/692919143163629568/photo/1 9 10 None None None None None
1489 692905862751522816 NaN NaN 2016-01-29 03:03:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wally. He's being abducted by aliens. 10/10 poor pupper https://t.co/EiF659Bgjn NaN NaN NaN https://twitter.com/dog_rates/status/692905862751522816/photo/1 10 10 Wally None None pupper None
1490 692901601640583168 NaN NaN 2016-01-29 02:46:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Fuck the system" 10/10 https://t.co/N0OADmCnVV NaN NaN NaN https://twitter.com/dog_rates/status/692901601640583168/photo/1 10 10 None None None None None
1491 692894228850999298 NaN NaN 2016-01-29 02:17:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Tupawc. He's actually a Christian rapper. Doesn't even understand the concept of dollar signs. 10/10 great guy https://t.co/mCqgtqLDCW NaN NaN NaN https://twitter.com/dog_rates/status/692894228850999298/photo/1 10 10 Tupawc None None None None
1492 692828166163931137 NaN NaN 2016-01-28 21:54:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper just descended from heaven. 12/10 can probably fly https://t.co/X6X9wM7NuS NaN NaN NaN https://twitter.com/dog_rates/status/692828166163931137/photo/1 12 10 None None None pupper None
1493 692752401762250755 NaN NaN 2016-01-28 16:53:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 https://t.co/kYWcXbluUu NaN NaN NaN https://twitter.com/dog_rates/status/692752401762250755/photo/1 13 10 None None None pupper None
1494 692568918515392513 NaN NaN 2016-01-28 04:44:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chester. He's been guarding this pumpkin since October. Dedicated af. Hat is nifty as hell. 12/10 would snug https://t.co/CFMjsn3P6B NaN NaN NaN https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1 12 10 Chester None None None None
1495 692535307825213440 NaN NaN 2016-01-28 02:30:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Amber. She's a Fetty Woof. 10/10 would pet in a heartbeat https://t.co/Dt360V2MYI NaN NaN NaN https://twitter.com/dog_rates/status/692535307825213440/photo/1 10 10 Amber None None None None
1496 692530551048294401 NaN NaN 2016-01-28 02:12:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Cody. He's been to like 80 countries and is way more cultured than you. He wanted me to say that. 10/10 https://t.co/Iv3flDTpXu NaN NaN NaN https://twitter.com/dog_rates/status/692530551048294401/photo/1 10 10 Cody None None None None
1497 692423280028966913 6.924173e+17 4.196984e+09 2016-01-27 19:05:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> PUPDATE: just noticed this dog has some extra legs. Very advanced. Revolutionary af. Upgraded to a 9/10 NaN NaN NaN NaN 9 10 None None None None None
1498 692417313023332352 NaN NaN 2016-01-27 18:42:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https://t.co/VGaIMktX10 NaN NaN NaN https://twitter.com/dog_rates/status/692417313023332352/photo/1 7 10 Herschel None None pupper None
1499 692187005137076224 NaN NaN 2016-01-27 03:26:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N NaN NaN NaN https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1 12 10 a None None None None
1500 692158366030913536 NaN NaN 2016-01-27 01:33:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Edgar. He's a Sassafras Puggleflash. Nothing satisfies him. Not since the war. 10/10 cheer up pup https://t.co/1NgMb9BTWB NaN NaN NaN https://twitter.com/dog_rates/status/692158366030913536/photo/1 10 10 Edgar None None None None
1501 692142790915014657 6.920419e+17 4.196984e+09 2016-01-27 00:31:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ NaN NaN NaN https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1 13 10 None None None None None
1502 692041934689402880 NaN NaN 2016-01-26 17:50:29 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Teddy. His head is too heavy. 13/10 (vid by @jooanrim) https://t.co/sRUpRpGZ3y NaN NaN NaN https://vine.co/v/iiI3wmqXYmA 13 10 Teddy None None None None
1503 692017291282812928 NaN NaN 2016-01-26 16:12:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 https://t.co/BE4ahQ0IO2 NaN NaN NaN https://twitter.com/dog_rates/status/692017291282812928/photo/1 9 10 Kingsley None None None None
1504 691820333922455552 NaN NaN 2016-01-26 03:09:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brockly. He's an uber driver. Falls asleep at the wheel often. Irresponsible af 8/10 would totally still pet https://t.co/fn1oUlS69Z NaN NaN NaN https://twitter.com/dog_rates/status/691820333922455552/photo/1 8 10 Brockly None None None None
1505 691793053716221953 NaN NaN 2016-01-26 01:21:31 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> We usually don't rate penguins but this one is in need of a confidence boost after that slide. 10/10 https://t.co/qnMJHBxPuo NaN NaN NaN https://vine.co/v/OTTVAKw6YlW 10 10 None None None None None
1506 691756958957883396 NaN NaN 2016-01-25 22:58:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 https://t.co/frGWV7IP6J NaN NaN NaN https://twitter.com/dog_rates/status/691756958957883396/photo/1 10 10 None None None None None
1507 691675652215414786 NaN NaN 2016-01-25 17:35:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Richie and Plip. They are the best of pals. Do everything together. 10/10 for both https://t.co/KMdwNgONkV NaN NaN NaN https://twitter.com/dog_rates/status/691675652215414786/photo/1 10 10 Richie None None None None
1508 691483041324204033 NaN NaN 2016-01-25 04:49:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When bae says they can't go out but you see them with someone else that same night. 5/10 &amp; 10/10 for heartbroken pup https://t.co/aenk0KpoWM NaN NaN NaN https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1 5 10 None None None None None
1509 691459709405118465 NaN NaN 2016-01-25 03:16:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Leo. He's a Fallopian Puffalope. Precious af. 12/10 would cuddle https://t.co/LZEi0DpRsH NaN NaN NaN https://twitter.com/dog_rates/status/691459709405118465/photo/1,https://twitter.com/dog_rates/status/691459709405118465/photo/1 12 10 Leo None None None None
1510 691444869282295808 NaN NaN 2016-01-25 02:17:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bailey. She likes flowers. 12/10 https://t.co/YBENhr24FV NaN NaN NaN https://twitter.com/dog_rates/status/691444869282295808/photo/1,https://twitter.com/dog_rates/status/691444869282295808/photo/1 12 10 Bailey None None None None
1511 691416866452082688 NaN NaN 2016-01-25 00:26:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k NaN NaN NaN https://twitter.com/dog_rates/status/691416866452082688/photo/1 13 10 None None None None None
1512 691321916024623104 NaN NaN 2016-01-24 18:09:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Molly. She's a Peruvian Niddlewog. Loves her new hat. 11/10 would totally pet https://t.co/g4fiS8A9Ab NaN NaN NaN https://twitter.com/dog_rates/status/691321916024623104/photo/1 11 10 Molly None None None None
1513 691096613310316544 NaN NaN 2016-01-24 03:14:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both https://t.co/fUacc13OrW NaN NaN NaN https://twitter.com/dog_rates/status/691096613310316544/photo/1 11 10 None None None None None
1514 691090071332753408 NaN NaN 2016-01-24 02:48:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy Saturday here's a dog in a mailbox. 12/10 https://t.co/MM7tb4HpEY NaN NaN NaN https://twitter.com/dog_rates/status/691090071332753408/photo/1 12 10 None None None None None
1515 690989312272396288 NaN NaN 2016-01-23 20:07:44 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> We've got a doggy down. Requesting backup. 12/10 for both. Please enjoy https://t.co/pmarb2dG0e NaN NaN NaN https://vine.co/v/iOZKZEU2nHq 12 10 None None None None None
1516 690959652130045952 NaN NaN 2016-01-23 18:09:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers https://t.co/DgXYBDMM3E NaN NaN NaN https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1 11 10 None None None None None
1517 690938899477221376 NaN NaN 2016-01-23 16:47:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> She thought the sunset was pretty, but I thought she was prettier. 10/10 https://t.co/HSL3mnP5NX NaN NaN NaN https://twitter.com/dog_rates/status/690938899477221376/photo/1 10 10 None None None None None
1518 690932576555528194 NaN NaN 2016-01-23 16:22:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Buddy. He's testing out the water. Such caution. Much reserve. 12/10 https://t.co/FQZGSQIQLS NaN NaN NaN https://twitter.com/dog_rates/status/690932576555528194/photo/1 12 10 Buddy None None None None
1519 690735892932222976 NaN NaN 2016-01-23 03:20:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Peaches. She's a Dingleberry Zanderfloof. 13/10 would caress lots https://t.co/YrhkrTsoTt NaN NaN NaN https://twitter.com/dog_rates/status/690735892932222976/photo/1,https://twitter.com/dog_rates/status/690735892932222976/photo/1 13 10 Peaches None None None None
1520 690728923253055490 NaN NaN 2016-01-23 02:53:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Vinscent. He was just questioned about his recent credit card spending. 8/10 https://t.co/qOD4G19A2u NaN NaN NaN https://twitter.com/dog_rates/status/690728923253055490/photo/1 8 10 Vinscent None None None None
1521 690690673629138944 NaN NaN 2016-01-23 00:21:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cedrick. He's a spookster. Did me a discomfort. 10/10 would pet with a purpose https://t.co/yS7T4gxKod NaN NaN NaN https://twitter.com/dog_rates/status/690690673629138944/photo/1 10 10 Cedrick None None None None
1522 690649993829576704 NaN NaN 2016-01-22 21:39:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hazel. She's a gymnast. Training hard for Rio. 11/10 focused af https://t.co/CneG2ZbxHP NaN NaN NaN https://twitter.com/dog_rates/status/690649993829576704/photo/1 11 10 Hazel None None None None
1523 690607260360429569 6.903413e+17 4.670367e+08 2016-01-22 18:49:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 12/10 @LightningHoltt NaN NaN NaN NaN 12 10 None None None None None
1524 690597161306841088 NaN NaN 2016-01-22 18:09:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lolo. She's America af. Behind in science &amp; math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA NaN NaN NaN https://twitter.com/dog_rates/status/690597161306841088/photo/1 11 10 Lolo None None None None
1525 690400367696297985 NaN NaN 2016-01-22 05:07:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Eriq. His friend just reminded him of last year's super bowl. Not cool friend\n10/10 for Eriq\n6/10 for friend https://t.co/PlEXTofdpf NaN NaN NaN https://twitter.com/dog_rates/status/690400367696297985/photo/1 10 10 Eriq None None None None
1526 690374419777196032 NaN NaN 2016-01-22 03:24:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Phred. He's an Albanian Flepperkush. Tongue is rather impressive if I'm honest. Perhaps even legendary 11/10 https://t.co/VpfFCKE28C NaN NaN NaN https://twitter.com/dog_rates/status/690374419777196032/photo/1 11 10 Phred None None None None
1527 690360449368465409 NaN NaN 2016-01-22 02:28:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx NaN NaN NaN https://twitter.com/dog_rates/status/690360449368465409/photo/1 9 10 the None None None None
1528 690348396616552449 NaN NaN 2016-01-22 01:40:58 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Oddie. He's trying to communicate. 12/10 very solid effort (vid by @kaleseyy) https://t.co/JjxriLqZOL NaN NaN NaN https://vine.co/v/iejBWerY9X2 12 10 Oddie None None None None
1529 690248561355657216 NaN NaN 2016-01-21 19:04:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Maxwell. That's his moped. He rents it out for others to use as long as he can come also. 11/10 great dog https://t.co/IF5kKaO945 NaN NaN NaN https://twitter.com/dog_rates/status/690248561355657216/photo/1 11 10 Maxwell None None None None
1530 690021994562220032 NaN NaN 2016-01-21 04:03:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Geoff (pronounced "Kyle"). He accidentally opened the front facing camera. 10/10 https://t.co/TmlwQWnmRC NaN NaN NaN https://twitter.com/dog_rates/status/690021994562220032/photo/1 10 10 Geoff None None None None
1531 690015576308211712 NaN NaN 2016-01-21 03:38:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho https://t.co/03XlvS8izg NaN NaN NaN https://twitter.com/dog_rates/status/690015576308211712/photo/1,https://twitter.com/dog_rates/status/690015576308211712/photo/1 12 10 None None None pupper None
1532 690005060500217858 NaN NaN 2016-01-21 02:56:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "I'm the only one that ever does anything in this household" 10/10 https://t.co/V8HcVIh4jt NaN NaN NaN https://twitter.com/dog_rates/status/690005060500217858/photo/1 10 10 None None None None None
1533 689999384604450816 NaN NaN 2016-01-21 02:34:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Covach. He's trying to melt the snow. 10/10 we all believe in you buddy https://t.co/fgMaP2zDMt NaN NaN NaN https://twitter.com/dog_rates/status/689999384604450816/photo/1 10 10 Covach None None None None
1534 689993469801164801 NaN NaN 2016-01-21 02:10:37 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Here we are witnessing a rare High Stepping Alaskan Floofer. 12/10 dangerously petable (vid by @TheMrsNux) https://t.co/K4s9IJh2jm NaN NaN NaN https://vine.co/v/ienexVMZgi5 12 10 None None floofer None None
1535 689977555533848577 NaN NaN 2016-01-21 01:07:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy Wednesday here's a pup wearing a beret. 12/10 please enjoy https://t.co/MXedEzSHIf NaN NaN NaN https://twitter.com/dog_rates/status/689977555533848577/photo/1 12 10 None None None None None
1536 689905486972461056 NaN NaN 2016-01-20 20:21:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Gizmo. He's quite the pupper. Confused by bed, but agile af. Can barely catch on camera. 11/10 so quick https://t.co/IE4ZblyZRY NaN NaN NaN https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1 11 10 Gizmo None None pupper None
1537 689877686181715968 NaN NaN 2016-01-20 18:30:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working https://t.co/5iH08ltkoe NaN NaN NaN https://twitter.com/dog_rates/status/689877686181715968/photo/1 9 10 Durg None None None None
1538 689835978131935233 NaN NaN 2016-01-20 15:44:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Fynn &amp; Taco. Fynn is an all-powerful leaf lord and Taco is in the wrong place at the wrong time. 11/10 &amp; 10/10 https://t.co/MuqHPvtL8c NaN NaN NaN https://twitter.com/dog_rates/status/689835978131935233/photo/1 11 10 Fynn None None None None
1539 689661964914655233 NaN NaN 2016-01-20 04:13:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Luca. He's a Butternut Scooperfloof. Glorious tongue. 12/10 would pet really well https://t.co/VcxZQPNZaV NaN NaN NaN https://twitter.com/dog_rates/status/689661964914655233/photo/1 12 10 Luca None None None None
1540 689659372465688576 NaN NaN 2016-01-20 04:03:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky https://t.co/XtDkrsdEfF NaN NaN NaN https://twitter.com/dog_rates/status/689659372465688576/photo/1 8 10 Ricky None None None None
1541 689623661272240129 NaN NaN 2016-01-20 01:41:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lucy. She's terrified of the stuffed billed dog. 10/10 stay strong pupper https://t.co/QnvSjjyh7n NaN NaN NaN https://twitter.com/dog_rates/status/689623661272240129/photo/1,https://twitter.com/dog_rates/status/689623661272240129/photo/1 10 10 Lucy None None pupper None
1542 689599056876867584 NaN NaN 2016-01-20 00:03:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we see 33 dogs posing for a picture. All get 11/10 for superb cooperation https://t.co/TRAri5iHzd NaN NaN NaN https://twitter.com/dog_rates/status/689599056876867584/photo/1 11 10 None None None None None
1543 689557536375177216 NaN NaN 2016-01-19 21:18:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Downright majestic af 12/10 https://t.co/WFh2FEbYzj NaN NaN NaN https://twitter.com/dog_rates/status/689557536375177216/photo/1 12 10 None None None None None
1544 689517482558820352 NaN NaN 2016-01-19 18:39:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Carl. He just wants to make sure you're having a good day. 12/10 just a swell pup https://t.co/Wk3XCnmDvm NaN NaN NaN https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1 12 10 Carl None None None None
1545 689289219123089408 NaN NaN 2016-01-19 03:32:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Someone sent me this without any context and every aspect of it is spectacular. 13/10 please enjoy https://t.co/Rxrd4hPmp4 NaN NaN NaN https://twitter.com/dog_rates/status/689289219123089408/video/1 13 10 None None None None None
1546 689283819090870273 NaN NaN 2016-01-19 03:10:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff https://t.co/V62rIva61J NaN NaN NaN https://twitter.com/dog_rates/status/689283819090870273/photo/1 9 10 Chipson None None None None
1547 689280876073582592 NaN NaN 2016-01-19 02:59:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Herald. He wants you to know he could steal your girl at any moment. 10/10 https://t.co/JR7hLnlgeS NaN NaN NaN https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1 10 10 Herald None None None None
1548 689275259254616065 NaN NaN 2016-01-19 02:36:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Lucky. He was showing his friends an extreme pogo stick trick when he completely lost control. 10/10 still rad https://t.co/K55XrIoePl NaN NaN NaN https://twitter.com/dog_rates/status/689275259254616065/photo/1 10 10 Lucky None None None None
1549 689255633275777024 NaN NaN 2016-01-19 01:18:43 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Ferg. He swallowed a chainsaw. 1 like = 1 prayer 10/10 remain calm Ferg (vid by @calebturer) https://t.co/gOH51Y8Yh1 NaN NaN NaN https://vine.co/v/iOL792n5hz2 10 10 Ferg None None None None
1550 689154315265683456 NaN NaN 2016-01-18 18:36:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath https://t.co/o47yitCn9N NaN NaN NaN https://twitter.com/dog_rates/status/689154315265683456/photo/1 9 10 None None None None None
1551 689143371370250240 NaN NaN 2016-01-18 17:52:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Trip. He likes wearing costumes that aren't consistent with the season to screw with people 10/10 tricky pupper https://t.co/40w7TI5Axv NaN NaN NaN https://twitter.com/dog_rates/status/689143371370250240/photo/1 10 10 Trip None None pupper None
1552 688916208532455424 NaN NaN 2016-01-18 02:49:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper just wants to say hello. 11/10 would knock down fence for https://t.co/A8X8fwS78x NaN NaN NaN https://twitter.com/dog_rates/status/688916208532455424/photo/1,https://twitter.com/dog_rates/status/688916208532455424/photo/1 11 10 None None None pupper None
1553 688908934925697024 NaN NaN 2016-01-18 02:21:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Clarence. He does parkour. 8/10 very talented dog https://t.co/WpSFZm7RPH NaN NaN NaN https://twitter.com/dog_rates/status/688908934925697024/photo/1 8 10 Clarence None None None None
1554 688898160958271489 NaN NaN 2016-01-18 01:38:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you have a ton of work to do but then remember you have tomorrow off. 10/10 https://t.co/MfEaMUFYTx NaN NaN NaN https://twitter.com/dog_rates/status/688898160958271489/photo/1,https://twitter.com/dog_rates/status/688898160958271489/photo/1 10 10 None None None None None
1555 688894073864884227 NaN NaN 2016-01-18 01:22:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hamrick. He's covered in corn flakes. Silly pupper. Looks congested. 7/10 considerably petable https://t.co/ROPZcAMQKI NaN NaN NaN https://twitter.com/dog_rates/status/688894073864884227/photo/1 7 10 Hamrick None None pupper None
1556 688828561667567616 NaN NaN 2016-01-17 21:01:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 https://t.co/dfCCK3tWfr NaN NaN NaN https://twitter.com/dog_rates/status/688828561667567616/photo/1 9 10 Brad None None None None
1557 688804835492233216 NaN NaN 2016-01-17 19:27:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you stumble but recover quickly cause your crush is watching. 12/10 https://t.co/PMeq6IedU7 NaN NaN NaN https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1 12 10 None None None None None
1558 688789766343622656 NaN NaN 2016-01-17 18:27:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly https://t.co/2TWxg0rgyG NaN NaN NaN https://twitter.com/dog_rates/status/688789766343622656/photo/1 8 10 Pubert None None None None
1559 688547210804498433 NaN NaN 2016-01-17 02:23:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 https://t.co/7ycWCUrjmZ NaN NaN NaN https://twitter.com/dog_rates/status/688547210804498433/photo/1 9 10 Frönq None None None None
1560 688519176466644993 NaN NaN 2016-01-17 00:32:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper is sprouting a flower out of her head. 12/10 revolutionary af https://t.co/glmvQBRjv4 NaN NaN NaN https://twitter.com/dog_rates/status/688519176466644993/photo/1 12 10 None None None pupper None
1561 688385280030670848 NaN NaN 2016-01-16 15:40:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Louis. He's takes top-notch selfies. 12/10 would snapchat with https://t.co/vz2DukO0th NaN NaN NaN https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1 12 10 Louis None None None None
1562 688211956440801280 NaN NaN 2016-01-16 04:11:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Derby. He's a superstar. 13/10 (vid by @NBohlmann) https://t.co/o4Nfc8WoAO NaN NaN NaN https://twitter.com/dog_rates/status/688211956440801280/video/1 13 10 Derby None None None None
1563 688179443353796608 NaN NaN 2016-01-16 02:02:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lizzie. She's about to fist bump the large ridable maned pupper. She's very excited. 10/10 for both dogs https://t.co/mFhvtX36om NaN NaN NaN https://twitter.com/dog_rates/status/688179443353796608/photo/1 10 10 Lizzie None None pupper None
1564 688116655151435777 NaN NaN 2016-01-15 21:52:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 https://t.co/YdLytdZOqv NaN NaN NaN https://twitter.com/dog_rates/status/688116655151435777/photo/1 10 10 None None None None None
1565 688064179421470721 NaN NaN 2016-01-15 18:24:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kilo. He's a Pouncing Brioche. Really likes snow. 11/10 https://t.co/GS76SfkraY NaN NaN NaN https://twitter.com/dog_rates/status/688064179421470721/photo/1 11 10 Kilo None None None None
1566 687841446767013888 NaN NaN 2016-01-15 03:39:15 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> 13/10 I can't stop watching this (vid by @k8lynwright) https://t.co/nZhhMRr5Hp NaN NaN NaN https://vine.co/v/iOWwUPH1hrw 13 10 None None None None None
1567 687826841265172480 NaN NaN 2016-01-15 02:41:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Louis. He's a rollercoaster of emotions. Incalculably fluffy. 12/10 would pet firmly https://t.co/17RGvOZO9P NaN NaN NaN https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1 12 10 Louis None None None None
1568 687818504314159109 NaN NaN 2016-01-15 02:08:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> With great pupper comes great responsibility. 12/10 https://t.co/hK6xB042EP NaN NaN NaN https://twitter.com/dog_rates/status/687818504314159109/photo/1 12 10 None None None pupper None
1569 687807801670897665 NaN NaN 2016-01-15 01:25:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Trooper &amp; Maya. Trooper protects Maya from bad things like dognappers and Comcast. So touching. 11/10 for both https://t.co/c98k1IoZKy NaN NaN NaN https://twitter.com/dog_rates/status/687807801670897665/photo/1 11 10 Trooper None None None None
1570 687732144991551489 NaN NaN 2016-01-14 20:24:55 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Ember. That's the q-tip she owes money to. 11/10 pay up pup. (vid by @leanda_h) https://t.co/kGRcRjRJRl NaN NaN NaN https://vine.co/v/iOuMphL5DBY 11 10 Ember None None None None
1571 687704180304273409 NaN NaN 2016-01-14 18:33:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt NaN NaN NaN https://twitter.com/dog_rates/status/687704180304273409/photo/1 9 10 Blakely None None pupper None
1572 687664829264453632 NaN NaN 2016-01-14 15:57:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Opal. He's a Belgian Dijon Poofster. Upset because his hood makes him look like blond Justin Timberlake. 11/10 https://t.co/IAt3jRZ5ez NaN NaN NaN https://twitter.com/dog_rates/status/687664829264453632/photo/1 11 10 Opal None None None None
1573 687494652870668288 NaN NaN 2016-01-14 04:41:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Marq. He stole this car. 7/10 wtf Marq? https://t.co/MHScqo5l8c NaN NaN NaN https://twitter.com/dog_rates/status/687494652870668288/photo/1 7 10 Marq None None None None
1574 687480748861947905 NaN NaN 2016-01-14 03:45:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Another magnificent photo. 12/10 https://t.co/X5w387K5jr NaN NaN NaN https://twitter.com/dog_rates/status/687480748861947905/photo/1 12 10 None None None None None
1575 687476254459715584 NaN NaN 2016-01-14 03:28:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Curtis. He's a fluffball. 11/10 would snug this pupper https://t.co/1DzInODwrj NaN NaN NaN https://twitter.com/dog_rates/status/687476254459715584/photo/1 11 10 Curtis None None pupper None
1576 687460506001633280 NaN NaN 2016-01-14 02:25:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kramer. He's a Picasso Tortellini. Tie couldn't be more accurate. Confident af. Runs his own business. 10/10 https://t.co/jIcVW0xxmH NaN NaN NaN https://twitter.com/dog_rates/status/687460506001633280/photo/1 10 10 Kramer None None None None
1577 687399393394311168 NaN NaN 2016-01-13 22:22:41 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Barry. He's very fast. I hope he finds what he's looking for. 10/10 (vid by @KeeganWolfe33) https://t.co/nTAsyvbIiO NaN NaN NaN https://vine.co/v/iM2hLu9LU5i 10 10 Barry None None None None
1578 687317306314240000 NaN NaN 2016-01-13 16:56:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https://t.co/pRp1Npucbz NaN NaN NaN https://twitter.com/dog_rates/status/687317306314240000/photo/1,https://twitter.com/dog_rates/status/687317306314240000/photo/1 11 10 Tyrone None None None None
1579 687312378585812992 NaN NaN 2016-01-13 16:36:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper https://t.co/yzGR9xjE9Q NaN NaN NaN https://twitter.com/dog_rates/status/687312378585812992/photo/1 7 10 None None None pupper None
1580 687127927494963200 NaN NaN 2016-01-13 04:23:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Gordon. He's an asshole. 9/10 would still pet https://t.co/a34N7QwKbb NaN NaN NaN https://twitter.com/dog_rates/status/687127927494963200/photo/1 9 10 Gordon None None None None
1581 687124485711986689 NaN NaN 2016-01-13 04:10:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Samson. He's a Firecracker Häagen-Dazs. 11/10 objects in mirror may be more petable than they appear https://t.co/03vR9dn7jy NaN NaN NaN https://twitter.com/dog_rates/status/687124485711986689/photo/1 11 10 Samson None None None None
1582 687109925361856513 NaN NaN 2016-01-13 03:12:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Baxter. He looks like a fun dog. Prefers action shots. 11/10 the last one is impeccable https://t.co/LHcH1yhhIb NaN NaN NaN https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1 11 10 Baxter None None None None
1583 687102708889812993 NaN NaN 2016-01-13 02:43:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all https://t.co/A88x73TwMN NaN NaN NaN https://twitter.com/dog_rates/status/687102708889812993/photo/1 5 10 None None None None None
1584 687096057537363968 NaN NaN 2016-01-13 02:17:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it https://t.co/D7jYj6vdwC NaN NaN NaN https://twitter.com/dog_rates/status/687096057537363968/photo/1 11 10 None None None pupper None
1585 686947101016735744 NaN NaN 2016-01-12 16:25:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jackson. He was specifically told not to sleep in the fridge. Damn it Jackson. 11/10 would squeeze softly https://t.co/lJs10ZJsgj NaN NaN NaN https://twitter.com/dog_rates/status/686947101016735744/photo/1 11 10 Jackson None None None None
1586 686760001961103360 NaN NaN 2016-01-12 04:01:58 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This pupper forgot how to walk. 12/10 happens to all of us (vid by @bbuckley96) https://t.co/KFTrkSOuu3 NaN NaN NaN https://vine.co/v/iMvubwT260D 12 10 None None None pupper None
1587 686749460672679938 NaN NaN 2016-01-12 03:20:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet https://t.co/nSQrhwbk1V NaN NaN NaN https://twitter.com/dog_rates/status/686749460672679938/photo/1 8 10 None None None None None
1588 686730991906516992 NaN NaN 2016-01-12 02:06:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I just love this picture. 12/10 lovely af https://t.co/Kc84eFNhYU NaN NaN NaN https://twitter.com/dog_rates/status/686730991906516992/photo/1 12 10 None None None None None
1589 686683045143953408 NaN NaN 2016-01-11 22:56:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mona. She's a Yarborough Splishnsplash. Lost body during Nam. 11/10 revolutionary pupper https://t.co/pgD6h0yhgz NaN NaN NaN https://twitter.com/dog_rates/status/686683045143953408/photo/1 11 10 Mona None None pupper None
1590 686618349602762752 NaN NaN 2016-01-11 18:39:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Olivia. She just saw an adult wearing crocs. 11/10 poor pupper. No one should witness such a thing https://t.co/yJVTi1DjJc NaN NaN NaN https://twitter.com/dog_rates/status/686618349602762752/photo/1 11 10 Olivia None None pupper None
1591 686606069955735556 NaN NaN 2016-01-11 17:50:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Horace. He was practicing his levitation, minding his own business when a rogue tennis ball spooked him. 10/10 https://t.co/tB9xYjMyZd NaN NaN NaN https://twitter.com/dog_rates/status/686606069955735556/photo/1 10 10 Horace None None None None
1592 686394059078897668 NaN NaN 2016-01-11 03:47:50 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This pup's having a nightmare that he forgot to type a paper due first thing in the morning. 12/10 (vid by ... https://t.co/CufnbUT0pB NaN NaN NaN https://vine.co/v/iMqBebnOvav 12 10 None None None None None
1593 686386521809772549 NaN NaN 2016-01-11 03:17:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Crimson. He's a Speckled Winnebago. Main passions are air hockey &amp; parkour. 11/10 would pet thoroughly https://t.co/J5aI7SjzDc NaN NaN NaN https://twitter.com/dog_rates/status/686386521809772549/photo/1 11 10 Crimson None None None None
1594 686377065986265092 NaN NaN 2016-01-11 02:40:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Birf. He thinks he's gone blind. 10/10 very frightened pupper https://t.co/oDkspjNWYX NaN NaN NaN https://twitter.com/dog_rates/status/686377065986265092/photo/1 10 10 Birf None None pupper None
1595 686358356425093120 NaN NaN 2016-01-11 01:25:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups https://t.co/95JJevQOWW NaN NaN NaN https://twitter.com/dog_rates/status/686358356425093120/photo/1 10 10 None None None None None
1596 686286779679375361 NaN NaN 2016-01-10 20:41:33 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> When bae calls your name from across the room. 12/10 (vid by @christinemcc98) https://t.co/xolcXA6gxe NaN NaN NaN https://vine.co/v/iMZx6aDbExn 12 10 None None None None None
1597 686050296934563840 NaN NaN 2016-01-10 05:01:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Flávio. He's a Macedonian Poppycock. 97% floof. Jubilant af. 11/10 personally I'd pet the hell out of https://t.co/BUyX7isHRg NaN NaN NaN https://twitter.com/dog_rates/status/686050296934563840/photo/1 11 10 Flávio None None None None
1598 686035780142297088 6.860340e+17 4.196984e+09 2016-01-10 04:04:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating NaN NaN NaN NaN 4 20 None None None None None
1599 686034024800862208 NaN NaN 2016-01-10 03:57:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all https://t.co/oSvRDuMm1D NaN NaN NaN https://twitter.com/dog_rates/status/686034024800862208/photo/1 12 10 None None None None None
1600 686007916130873345 NaN NaN 2016-01-10 02:13:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper has a magical eye. 11/10 I can't stop looking at it https://t.co/heAGpKTpPW NaN NaN NaN https://twitter.com/dog_rates/status/686007916130873345/photo/1 11 10 None None None pupper None
1601 686003207160610816 NaN NaN 2016-01-10 01:54:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hammond. He's a peculiar pup. Loves long walks. Bark barely audible. Too many legs. 3/10 must be rare https://t.co/NOIiRWr5Jf NaN NaN NaN https://twitter.com/dog_rates/status/686003207160610816/photo/1 3 10 Hammond None None None None
1602 685973236358713344 NaN NaN 2016-01-09 23:55:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lorelei. She's contemplating her existence and the eventual heat death of the universe. 11/10 very majestic https://t.co/xbUoULOIS8 NaN NaN NaN https://twitter.com/dog_rates/status/685973236358713344/photo/1 11 10 Lorelei None None None None
1603 685943807276412928 NaN NaN 2016-01-09 21:58:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn NaN NaN NaN https://twitter.com/dog_rates/status/685943807276412928/video/1 8 10 the None None pupper None
1604 685906723014619143 NaN NaN 2016-01-09 19:31:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Olive. He's stuck in a sleeve. 9/10 damn it Olive https://t.co/NnLjg6BgyF NaN NaN NaN https://twitter.com/dog_rates/status/685906723014619143/photo/1,https://twitter.com/dog_rates/status/685906723014619143/photo/1 9 10 Olive None None None None
1605 685681090388975616 6.855479e+17 4.196984e+09 2016-01-09 04:34:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Jack deserves another round of applause. If you missed this earlier today I strongly suggest reading it. Wonderful first 14/10 🐶❤️ NaN NaN NaN NaN 14 10 None None None None None
1606 685667379192414208 NaN NaN 2016-01-09 03:40:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Marty. He has no idea what happened here. Never seen this stuff in his life. 9/10 very suspicious pupper https://t.co/u427woxFpJ NaN NaN NaN https://twitter.com/dog_rates/status/685667379192414208/photo/1 9 10 Marty None None pupper None
1607 685663452032069632 NaN NaN 2016-01-09 03:24:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Brooks. He's confused by the almighty ball of tennis. 12/10 \n\n(vid by @PDolan37) https://t.co/AcVWe39nmM NaN NaN NaN https://twitter.com/dog_rates/status/685663452032069632/video/1 12 10 Brooks None None None None
1608 685641971164143616 NaN NaN 2016-01-09 01:59:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 https://t.co/jJS8qQeuNO NaN NaN NaN https://twitter.com/dog_rates/status/685641971164143616/photo/1 7 10 Otis None None pupper None
1609 685547936038666240 NaN NaN 2016-01-08 19:45:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Everybody needs to read this. Jack is our first 14/10. Truly heroic pupper https://t.co/3m6bNGXWnM NaN NaN NaN https://twitter.com/dog_rates/status/685547936038666240/photo/1,https://twitter.com/dog_rates/status/685547936038666240/photo/1 14 10 None None None pupper None
1610 685532292383666176 NaN NaN 2016-01-08 18:43:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 https://t.co/GboDG8WhJG NaN NaN NaN https://twitter.com/dog_rates/status/685532292383666176/photo/1 9 10 None None None None None
1611 685325112850124800 NaN NaN 2016-01-08 05:00:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw NaN NaN NaN https://twitter.com/dog_rates/status/685325112850124800/photo/1 10 10 None None None None None
1612 685321586178670592 NaN NaN 2016-01-08 04:46:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rocky. He sleeps like a psychopath. 10/10 quality tongue slip https://t.co/MbgG95mUdu NaN NaN NaN https://twitter.com/dog_rates/status/685321586178670592/photo/1 10 10 Rocky None None None None
1613 685315239903100929 NaN NaN 2016-01-08 04:21:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I would like everyone to appreciate this pup's face as much as I do. 11/10 https://t.co/QIe7oxkSNo NaN NaN NaN https://twitter.com/dog_rates/status/685315239903100929/photo/1,https://twitter.com/dog_rates/status/685315239903100929/photo/1 11 10 None None None None None
1614 685307451701334016 NaN NaN 2016-01-08 03:50:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Petrick. He's an Altostratus Floofer. Just had a run in with a trash bag. Groovy checkered floor. 11/10 https://t.co/rwW7z1JAOF NaN NaN NaN https://twitter.com/dog_rates/status/685307451701334016/photo/1 11 10 Petrick None floofer None None
1615 685268753634967552 NaN NaN 2016-01-08 01:16:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hubertson. He's a Carmel Haberdashery. Enjoys long summer days on his boat. Very peaceful pupper. 10/10 https://t.co/vzCl35fKlZ NaN NaN NaN https://twitter.com/dog_rates/status/685268753634967552/photo/1 10 10 Hubertson None None pupper None
1616 685198997565345792 NaN NaN 2016-01-07 20:39:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Alfie. That is his time machine. He's very proud of it. Without him life as we know it would not exist 11/10 https://t.co/530Yfbl5xo NaN NaN NaN https://twitter.com/dog_rates/status/685198997565345792/photo/1 11 10 Alfie None None None None
1617 685169283572338688 NaN NaN 2016-01-07 18:41:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Gerbald. He just found out he's adopted. Poor pupper. Snazzy tongue tho. 11/10 would hold close in time of need https://t.co/UfGkB9Wrud NaN NaN NaN https://twitter.com/dog_rates/status/685169283572338688/photo/1 11 10 Gerbald None None pupper None
1618 684969860808454144 6.849598e+17 4.196984e+09 2016-01-07 05:28:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> For those who claim this is a goat, u are wrong. It is not the Greatest Of All Time. The rating of 5/10 should have made that clear. Thank u NaN NaN NaN NaN 5 10 None None None None None
1619 684959798585110529 NaN NaN 2016-01-07 04:48:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jerry. He's a neat dog. No legs (tragic). Has more horns than a dog usually does. Bark is unique af. 5/10 https://t.co/85q7xlplsJ NaN NaN NaN https://twitter.com/dog_rates/status/684959798585110529/photo/1 5 10 Jerry None None None None
1620 684940049151070208 NaN NaN 2016-01-07 03:30:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oreo. She's a photographer and a model. Living a double pupple life. 12/10 such talent much cute would pet https://t.co/zNeLxJeAoL NaN NaN NaN https://twitter.com/dog_rates/status/684940049151070208/photo/1,https://twitter.com/dog_rates/status/684940049151070208/photo/1 12 10 Oreo None None None None
1621 684926975086034944 NaN NaN 2016-01-07 02:38:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Bruiser &amp; Charlie. They are the best of pals. Been through it all together. Both 11/10. 1 like=1 friendship https://t.co/PEXHuvSVD4 NaN NaN NaN https://twitter.com/dog_rates/status/684926975086034944/photo/1 11 10 Bruiser None None None None
1622 684914660081053696 NaN NaN 2016-01-07 01:49:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Hello yes I'll just get one of each color thanks" 12/10 for all https://t.co/AMDsllQs7a NaN NaN NaN https://twitter.com/dog_rates/status/684914660081053696/photo/1 12 10 None None None None None
1623 684902183876321280 NaN NaN 2016-01-07 00:59:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Perry. He's an Augustus Gloopster. Very condescending. Makes up for it with the sneaky tongue slip. 11/10 https://t.co/JVvIrUmTkR NaN NaN NaN https://twitter.com/dog_rates/status/684902183876321280/photo/1 11 10 Perry None None None None
1624 684880619965411328 NaN NaN 2016-01-06 23:33:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 https://t.co/DnNweb5eTO NaN NaN NaN https://twitter.com/dog_rates/status/684880619965411328/photo/1 5 10 None None None pupper None
1625 684830982659280897 NaN NaN 2016-01-06 20:16:44 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p NaN NaN NaN https://vine.co/v/eEZXZI1rqxX 13 10 None None None pupper None
1626 684800227459624960 NaN NaN 2016-01-06 18:14:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Theodore. He's dapper as hell. Probably owns horses. Uses 'summer' as a verb. Often quotes philosophers. 11/10 https://t.co/J3Ld4fRbSy NaN NaN NaN https://twitter.com/dog_rates/status/684800227459624960/photo/1 11 10 Theodore None None None None
1627 684594889858887680 NaN NaN 2016-01-06 04:38:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 https://t.co/uhQNehTpIu NaN NaN NaN https://twitter.com/dog_rates/status/684594889858887680/photo/1 10 10 None None None None None
1628 684588130326986752 NaN NaN 2016-01-06 04:11:43 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This pupper just got his first kiss. 12/10 he's so happy https://t.co/2sHwD7HztL NaN NaN NaN https://vine.co/v/ihWIxntjtO7 12 10 None None None pupper None
1629 684567543613382656 NaN NaN 2016-01-06 02:49:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bobby. He doesn't give a damn about personal space. Convinced he called shotgun first. 4/10 not the best dog https://t.co/b8XW69gSaU NaN NaN NaN https://twitter.com/dog_rates/status/684567543613382656/photo/1 4 10 Bobby None None None None
1630 684538444857667585 6.844811e+17 4.196984e+09 2016-01-06 00:54:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV NaN NaN NaN https://twitter.com/dog_rates/status/684538444857667585/video/1 12 10 None None None None None
1631 684481074559381504 NaN NaN 2016-01-05 21:06:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb NaN NaN NaN https://twitter.com/dog_rates/status/684481074559381504/photo/1 10 10 Pippa None None None None
1632 684460069371654144 NaN NaN 2016-01-05 19:42:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jeph. He's a Western Sagittarius Dookmarriot. Frightened by leaf. Caught him off guard. 10/10 calm down Jeph https://t.co/bicyOV6lju NaN NaN NaN https://twitter.com/dog_rates/status/684460069371654144/photo/1 10 10 Jeph None None None None
1633 684241637099323392 NaN NaN 2016-01-05 05:14:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Obi. He got camera shy. 12/10 https://t.co/feiPiq7z94 NaN NaN NaN https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1 12 10 Obi None None None None
1634 684225744407494656 6.842229e+17 4.196984e+09 2016-01-05 04:11:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 NaN NaN NaN https://twitter.com/dog_rates/status/684225744407494656/photo/1,https://twitter.com/dog_rates/status/684225744407494656/photo/1 143 130 None None None None None
1635 684222868335505415 NaN NaN 2016-01-05 04:00:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 NaN NaN NaN https://twitter.com/dog_rates/status/684222868335505415/photo/1 121 110 None None None None None
1636 684200372118904832 NaN NaN 2016-01-05 02:30:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s https://t.co/jkCb25OWfh NaN NaN NaN https://twitter.com/dog_rates/status/684200372118904832/photo/1 6 10 None None None None None
1637 684195085588783105 NaN NaN 2016-01-05 02:09:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tino. He really likes corndogs. 9/10 https://t.co/cUxGtnBfc2 NaN NaN NaN https://twitter.com/dog_rates/status/684195085588783105/photo/1 9 10 Tino None None None None
1638 684188786104872960 NaN NaN 2016-01-05 01:44:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 https://t.co/e0gbl9VFpA NaN NaN NaN https://twitter.com/dog_rates/status/684188786104872960/photo/1 10 10 None None None None None
1639 684177701129875456 NaN NaN 2016-01-05 01:00:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kulet. She's very proud of the flower she picked. Loves it dearly. 10/10 now I want a flower https://t.co/myUUwqJIs7 NaN NaN NaN https://twitter.com/dog_rates/status/684177701129875456/photo/1 10 10 Kulet None None None None
1640 684147889187209216 NaN NaN 2016-01-04 23:02:22 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Sweets the English Bulldog. Waves back to other bikers. 12/10 just a fantastic friendly pupper https://t.co/WYiFzuX7D4 NaN NaN NaN https://vine.co/v/ib2nTOEuuOI 12 10 Sweets None None pupper None
1641 684122891630342144 NaN NaN 2016-01-04 21:23:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Heartwarming scene of two pups that want nothing more than to be together. Touching af. Great tongue. Both 11/10 https://t.co/k32mSlRx0j NaN NaN NaN https://twitter.com/dog_rates/status/684122891630342144/photo/1 11 10 None None None None None
1642 684097758874210310 NaN NaN 2016-01-04 19:43:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Lupe. This is how she sleeps. 10/10 impressive really https://t.co/Fz6iZWlk8C NaN NaN NaN https://twitter.com/dog_rates/status/684097758874210310/photo/1 10 10 Lupe None None None None
1643 683857920510050305 NaN NaN 2016-01-04 03:50:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sadie. She fell asleep on the beach and her friends buried her. 10/10 can't trust fellow puppers these days https://t.co/LoKVvc1xAW NaN NaN NaN https://twitter.com/dog_rates/status/683857920510050305/photo/1 10 10 Sadie None None None None
1644 683852578183077888 NaN NaN 2016-01-04 03:28:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Tiger. He's a penbroke (little dog pun for ya, no need to applaud I know it was good) 10/10 good dog https://t.co/Yei0HzS3JN NaN NaN NaN https://twitter.com/dog_rates/status/683852578183077888/photo/1 10 10 Tiger None None None None
1645 683849932751646720 NaN NaN 2016-01-04 03:18:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jiminy. He's not the brightest dog. Needs to lay off the kibble. 5/10 still petable https://t.co/omln4LOy1x NaN NaN NaN https://twitter.com/dog_rates/status/683849932751646720/photo/1 5 10 Jiminy None None None None
1646 683834909291606017 NaN NaN 2016-01-04 02:18:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we see a faulty pupper. Might need to replace batteries. Try turning off &amp; back on again. 9/10 would still pet https://t.co/O1E4AtHVxO NaN NaN NaN https://twitter.com/dog_rates/status/683834909291606017/video/1 9 10 None None None pupper None
1647 683828599284170753 NaN NaN 2016-01-04 01:53:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 https://t.co/Eeh3yfdglS NaN NaN NaN https://twitter.com/dog_rates/status/683828599284170753/photo/1 12 10 None None None pupper None
1648 683773439333797890 NaN NaN 2016-01-03 22:14:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 https://t.co/qipZbshNsR NaN NaN NaN https://twitter.com/dog_rates/status/683773439333797890/photo/1 9 10 Buddy None None None None
1649 683742671509258241 NaN NaN 2016-01-03 20:12:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sebastian. He's a womanizer. Romantic af. Always covered in flower petals. Also a poet. 11/10 dreamy as hell https://t.co/eoL1bCpWCg NaN NaN NaN https://twitter.com/dog_rates/status/683742671509258241/photo/1 11 10 Sebastian None None None None
1650 683515932363329536 NaN NaN 2016-01-03 05:11:12 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z NaN NaN NaN https://vine.co/v/ibvnzrauFuV 11 10 None None None None None
1651 683498322573824003 NaN NaN 2016-01-03 04:01:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Griffin. He's desperate for both a physical and emotion connection. 11/10 I'd hug the hell out of Griffin https://t.co/ObWcOEekt0 NaN NaN NaN https://twitter.com/dog_rates/status/683498322573824003/photo/1 11 10 Griffin None None None None
1652 683481228088049664 NaN NaN 2016-01-03 02:53:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Banjo. He's a Peppercorn Shoop Da Whoop. Nails look lethal. Skeptical of luminescent orb 11/10 stay woke pupper https://t.co/H7NZFumpKq NaN NaN NaN https://twitter.com/dog_rates/status/683481228088049664/photo/1 11 10 Banjo None None pupper None
1653 683462770029932544 NaN NaN 2016-01-03 01:39:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) https://t.co/qFD8217fUT NaN NaN NaN https://twitter.com/dog_rates/status/683462770029932544/photo/1 8 10 None None None pupper None
1654 683449695444799489 NaN NaN 2016-01-03 00:47:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom https://t.co/1Z7Q6svWpe NaN NaN NaN https://twitter.com/dog_rates/status/683449695444799489/photo/1 10 10 None None None None None
1655 683391852557561860 NaN NaN 2016-01-02 20:58:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/YHXrdUTHd6 NaN NaN NaN https://twitter.com/dog_rates/status/683391852557561860/photo/1 11 10 Jack None None None None
1656 683357973142474752 NaN NaN 2016-01-02 18:43:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Have a seat, son. There are some things we need to discuss" 10/10 https://t.co/g4G5tvfTVd NaN NaN NaN https://twitter.com/dog_rates/status/683357973142474752/photo/1 10 10 None None None None None
1657 683142553609318400 NaN NaN 2016-01-02 04:27:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution https://t.co/hhIA3coiAJ NaN NaN NaN https://twitter.com/dog_rates/status/683142553609318400/photo/1 9 10 Brandy None None pupper None
1658 683111407806746624 NaN NaN 2016-01-02 02:23:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Larry. He thought the New Year's parties were tonight. 10/10 poor pupper. Maybe next year https://t.co/h3X0jK8MVM NaN NaN NaN https://twitter.com/dog_rates/status/683111407806746624/photo/1 10 10 Larry None None pupper None
1659 683098815881154561 NaN NaN 2016-01-02 01:33:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest https://t.co/UOPdXmUz4H NaN NaN NaN https://twitter.com/dog_rates/status/683098815881154561/photo/1 12 10 None None None None None
1660 683078886620553216 NaN NaN 2016-01-02 00:14:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable https://t.co/ny8mnXhGOW NaN NaN NaN https://twitter.com/dog_rates/status/683078886620553216/photo/1 9 10 None None None pupper None
1661 683030066213818368 NaN NaN 2016-01-01 21:00:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lulu. She's contemplating all her unreached 2015 goals and daydreaming of a more efficient tomorrow. 10/10 https://t.co/h3ScYuz77J NaN NaN NaN https://twitter.com/dog_rates/status/683030066213818368/photo/1 10 10 Lulu None None None None
1662 682962037429899265 NaN NaN 2016-01-01 16:30:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 NaN NaN NaN https://twitter.com/dog_rates/status/682962037429899265/photo/1 7 11 Darrel None None None None
1663 682808988178739200 6.827884e+17 4.196984e+09 2016-01-01 06:22:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible NaN NaN NaN NaN 20 16 None None None None None
1664 682788441537560576 NaN NaN 2016-01-01 05:00:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy New Year from your fav holiday squad! 🎉 12/10 for all\n\nHere's to a pupper-filled year 🍻🐶🐶🐶 https://t.co/ZSdEj59FGf NaN NaN NaN https://twitter.com/dog_rates/status/682788441537560576/photo/1 12 10 None None None pupper None
1665 682750546109968385 NaN NaN 2016-01-01 02:29:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 https://t.co/85X1GHohFr NaN NaN NaN https://twitter.com/dog_rates/status/682750546109968385/photo/1 9 10 Taco None None None None
1666 682697186228989953 NaN NaN 2015-12-31 22:57:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 https://t.co/Ny4iM6FDtz NaN NaN NaN https://twitter.com/dog_rates/status/682697186228989953/photo/1 12 10 None None None None None
1667 682662431982772225 NaN NaN 2015-12-31 20:39:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Joey and Izzy. Joey only has one ear that works and Izzy wants 2015 to be over already. Both great pups. 11/10s https://t.co/WgQTIQ93BB NaN NaN NaN https://twitter.com/dog_rates/status/682662431982772225/photo/1 11 10 Joey None None None None
1668 682638830361513985 NaN NaN 2015-12-31 19:05:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I have no words. Just a magnificent pup. 12/10 https://t.co/viwWHZgX8j NaN NaN NaN https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1 12 10 None None None None None
1669 682429480204398592 NaN NaN 2015-12-31 05:14:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 https://t.co/5aFw7SWyxU NaN NaN NaN https://twitter.com/dog_rates/status/682429480204398592/photo/1 8 10 None None None None None
1670 682406705142087680 NaN NaN 2015-12-31 03:43:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Patrick. He's a bigass pupper. 7/10 https://t.co/J9DXBFoAQe NaN NaN NaN https://twitter.com/dog_rates/status/682406705142087680/photo/1 7 10 Patrick None None pupper None
1671 682393905736888321 NaN NaN 2015-12-31 02:52:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kreg. He's riding an invisible jet ski. 11/10 that's downright legendary https://t.co/BA5AV5dx6Y NaN NaN NaN https://twitter.com/dog_rates/status/682393905736888321/photo/1 11 10 Kreg None None None None
1672 682389078323662849 NaN NaN 2015-12-31 02:33:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 https://t.co/vBeiQq6SaZ NaN NaN NaN https://twitter.com/dog_rates/status/682389078323662849/photo/1 9 10 Brody None None None None
1673 682303737705140231 NaN NaN 2015-12-30 20:54:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Todo. He's screaming because he doesn't want to wear his sweater or a seat belt. 9/10 gotta buckle up pup https://t.co/Nm8Spw4HbD NaN NaN NaN https://twitter.com/dog_rates/status/682303737705140231/photo/1 9 10 Todo None None None None
1674 682259524040966145 NaN NaN 2015-12-30 17:58:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 https://t.co/i5TeG0KYcW NaN NaN NaN https://twitter.com/dog_rates/status/682259524040966145/photo/1 9 10 Jax None None None None
1675 682242692827447297 NaN NaN 2015-12-30 16:51:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Samson. He patrols his waters on the back of his massive shielded battle dog. 11/10 https://t.co/f8dVgDYDFf NaN NaN NaN https://twitter.com/dog_rates/status/682242692827447297/photo/1 11 10 Samson None None None None
1676 682088079302213632 NaN NaN 2015-12-30 06:37:25 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE NaN NaN NaN https://vine.co/v/iqMjlxULzbn 12 10 None None None None None
1677 682059653698686977 NaN NaN 2015-12-30 04:44:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tess. Her main passions are shelves and baking too many cookies. 11/10 https://t.co/IriJlVZ6m4 NaN NaN NaN https://twitter.com/dog_rates/status/682059653698686977/photo/1,https://twitter.com/dog_rates/status/682059653698686977/photo/1 11 10 Tess None None None None
1678 682047327939461121 NaN NaN 2015-12-30 03:55:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear https://t.co/fZc7MixeeT NaN NaN NaN https://twitter.com/dog_rates/status/682047327939461121/photo/1 10 10 None None None None None
1679 682032003584274432 NaN NaN 2015-12-30 02:54:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ulysses. He likes holding hands and his eyes are magic. 11/10 https://t.co/gPmJHmtgak NaN NaN NaN https://twitter.com/dog_rates/status/682032003584274432/photo/1 11 10 Ulysses None None None None
1680 682003177596559360 NaN NaN 2015-12-30 01:00:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet https://t.co/Hy9La4xNX3 NaN NaN NaN https://twitter.com/dog_rates/status/682003177596559360/photo/1 5 10 None None None None None
1681 681981167097122816 NaN NaN 2015-12-29 23:32:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jimothy. He's a Trinidad Poliwhirl. Father was a velociraptor. Exceptionally unamused. 12/10 would adopt https://t.co/VwdIk0OwVx NaN NaN NaN https://twitter.com/dog_rates/status/681981167097122816/photo/1 12 10 Jimothy None None None None
1682 681891461017812993 NaN NaN 2015-12-29 17:36:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Charlie. He's scholarly af. Quite intimidating with all his pupper knowledge 10/10 even built that fire https://t.co/9KThv6z8u5 NaN NaN NaN https://twitter.com/dog_rates/status/681891461017812993/photo/1 10 10 Charlie None None pupper None
1683 681694085539872773 NaN NaN 2015-12-29 04:31:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://t.co/TONMhRoQh7 NaN NaN NaN https://twitter.com/dog_rates/status/681694085539872773/photo/1 11 10 Bo None None pupper None
1684 681679526984871937 NaN NaN 2015-12-29 03:33:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals https://t.co/3uCcDEJLXs NaN NaN NaN https://twitter.com/dog_rates/status/681679526984871937/photo/1 7 10 None None None pupper None
1685 681654059175129088 NaN NaN 2015-12-29 01:52:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Toffee. He's a happy pupper. Appears dangerously fluffy. Extraordinarily spherical. 12/10 would pet firmly https://t.co/oEXEKt3MHu NaN NaN NaN https://twitter.com/dog_rates/status/681654059175129088/photo/1 12 10 Toffee None None pupper None
1686 681610798867845120 NaN NaN 2015-12-28 23:00:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> *collapses* 12/10 https://t.co/C7M8mnzHIK NaN NaN NaN https://twitter.com/dog_rates/status/681610798867845120/photo/1 12 10 None None None None None
1687 681579835668455424 NaN NaN 2015-12-28 20:57:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there https://t.co/ojUBrDCHLT NaN NaN NaN https://twitter.com/dog_rates/status/681579835668455424/photo/1 8 10 Apollo None None None None
1688 681523177663676416 NaN NaN 2015-12-28 17:12:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https://t.co/GQn2IopLud NaN NaN NaN https://twitter.com/dog_rates/status/681523177663676416/photo/1 12 10 Carly None None None None
1689 681340665377193984 6.813394e+17 4.196984e+09 2015-12-28 05:07:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I've been told there's a slight possibility he's checking his mirror. We'll bump to 9.5/10. Still a menace NaN NaN NaN NaN 5 10 None None None None None
1690 681339448655802368 NaN NaN 2015-12-28 05:02:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Asher. He's not wearing a seatbelt or keeping both paws on the wheel. Absolute menace on the roadways. 9/10 https://t.co/V3SWuHACkh NaN NaN NaN https://twitter.com/dog_rates/status/681339448655802368/photo/1 9 10 Asher None None None None
1691 681320187870711809 NaN NaN 2015-12-28 03:46:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Glacier. He's a very happy pup. Loves to sing in the sunlight. 11/10 https://t.co/jTBPqKgkz7 NaN NaN NaN https://twitter.com/dog_rates/status/681320187870711809/photo/1 11 10 Glacier None None None None
1692 681302363064414209 NaN NaN 2015-12-28 02:35:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chuck. He's a neat dog. Very flexible. Trapped in a glass case of emotion. Devastatingly unfluffy 3/10 https://t.co/YqbU9xHV3p NaN NaN NaN https://twitter.com/dog_rates/status/681302363064414209/photo/1 3 10 Chuck None None None None
1693 681297372102656000 NaN NaN 2015-12-28 02:15:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap NaN NaN NaN https://twitter.com/dog_rates/status/681297372102656000/photo/1 12 10 actually None None None None
1694 681281657291280384 NaN NaN 2015-12-28 01:12:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sarge. His parents signed him up for dancing lessons but his true passion is roller coasters 11/10 very petable https://t.co/KvVoBIgkje NaN NaN NaN https://twitter.com/dog_rates/status/681281657291280384/photo/1 11 10 Sarge None None None None
1695 681261549936340994 NaN NaN 2015-12-27 23:53:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots https://t.co/wL1iDvbcVk NaN NaN NaN https://twitter.com/dog_rates/status/681261549936340994/photo/1 9 10 Panda None None None None
1696 681242418453299201 NaN NaN 2015-12-27 22:37:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Champ. He's being sacrificed to the Aztec sun god Huitzilopochtli. So sad. 10/10 Champ doesn't deserve this https://t.co/VGsziXImoy NaN NaN NaN https://twitter.com/dog_rates/status/681242418453299201/photo/1 10 10 Champ None None None None
1697 681231109724700672 NaN NaN 2015-12-27 21:52:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I just love this pic. 11/10 this pupper is going places https://t.co/P16uhh1PbI NaN NaN NaN https://twitter.com/dog_rates/status/681231109724700672/photo/1 11 10 None None None pupper None
1698 681193455364796417 NaN NaN 2015-12-27 19:22:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Aspen. He's astronomically fluffy. I wouldn't stop petting this dog if the world was ending around me 11/10 https://t.co/oBlgL9nxpx NaN NaN NaN https://twitter.com/dog_rates/status/681193455364796417/photo/1,https://twitter.com/dog_rates/status/681193455364796417/photo/1 11 10 Aspen None None None None
1699 680970795137544192 NaN NaN 2015-12-27 04:37:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 https://t.co/CXSJZ4Stk3 NaN NaN NaN https://twitter.com/dog_rates/status/680970795137544192/photo/1 9 10 None None None None None
1700 680959110691590145 NaN NaN 2015-12-27 03:51:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ozzie. He was doing fine until he lost traction in those festive socks. Now he's tired. 9/10 still killin it https://t.co/u4FYdIRKnY NaN NaN NaN https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1 9 10 Ozzie None None None None
1701 680940246314430465 NaN NaN 2015-12-27 02:36:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Alice. She's an idiot. 4/10 https://t.co/VQXdwJfkyS NaN NaN NaN https://twitter.com/dog_rates/status/680940246314430465/photo/1 4 10 Alice None None None None
1702 680934982542561280 NaN NaN 2015-12-27 02:15:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Sadie. She's a Tortellini Sidewinder. Very jubilant pup. Seems loyal. Leaves on point. 10/10 petable af https://t.co/g2bTu4ayPl NaN NaN NaN https://twitter.com/dog_rates/status/680934982542561280/photo/1 10 10 Sadie None None None None
1703 680913438424612864 NaN NaN 2015-12-27 00:49:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Griswold. He's dapper as hell. Already pumped for next Christmas. 11/10 https://t.co/5NrpNDyFzN NaN NaN NaN https://twitter.com/dog_rates/status/680913438424612864/photo/1 11 10 Griswold None None None None
1704 680889648562991104 NaN NaN 2015-12-26 23:15:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup https://t.co/cH2H7mch2H NaN NaN NaN https://twitter.com/dog_rates/status/680889648562991104/photo/1 9 10 Cheesy None None None None
1705 680836378243002368 NaN NaN 2015-12-26 19:43:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ellie. She's secretly ferocious. 12/10 very deadly pupper https://t.co/BF4BW8LUgb NaN NaN NaN https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1 12 10 Ellie None None pupper None
1706 680805554198020098 NaN NaN 2015-12-26 17:41:07 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This guy's dog broke. So sad. 9/10 would still pet https://t.co/BYiXJDEzv7 NaN NaN NaN https://vine.co/v/iAP0Ugzi2PO 9 10 None None None None None
1707 680801747103793152 NaN NaN 2015-12-26 17:25:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Great picture here. Dog on the right panicked &amp; forgot about his tongue. Middle green dog must've fainted. All 10/10 https://t.co/31npKUAox0 NaN NaN NaN https://twitter.com/dog_rates/status/680801747103793152/photo/1 10 10 None None None None None
1708 680798457301471234 NaN NaN 2015-12-26 17:12:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Moofasa. He must be a powerful dog. Fenced in for your protection. Just got his ear pierced. 6/10 https://t.co/w6fRfQ3RXD NaN NaN NaN https://twitter.com/dog_rates/status/680798457301471234/photo/1 6 10 Moofasa None None None None
1709 680609293079592961 NaN NaN 2015-12-26 04:41:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually https://t.co/WvJRg0XJit NaN NaN NaN https://twitter.com/dog_rates/status/680609293079592961/photo/1 9 10 Brody None None None None
1710 680583894916304897 NaN NaN 2015-12-26 03:00:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Penny. Her tennis ball slowly rolled down her cone and into the pool. 8/10 bad things happen to good puppers https://t.co/YNWU7LeFgg NaN NaN NaN https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1 8 10 Penny None None None None
1711 680497766108381184 NaN NaN 2015-12-25 21:18:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Percy. He's a Latvian Yuletide Heineken. Refuses to take off sweater. Kinda feisty. 12/10 would keep in pocket https://t.co/QGM5Fcuv7s NaN NaN NaN https://twitter.com/dog_rates/status/680497766108381184/photo/1 12 10 Percy None None None None
1712 680494726643068929 NaN NaN 2015-12-25 21:06:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD NaN NaN NaN https://twitter.com/dog_rates/status/680494726643068929/photo/1 26 10 None None None None None
1713 680473011644985345 NaN NaN 2015-12-25 19:39:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hector. He thinks he's a hammer. Silly Hector. You're a pupper, not a hammer. 10/10 https://t.co/OdUFuZIXiI NaN NaN NaN https://twitter.com/dog_rates/status/680473011644985345/photo/1 10 10 Hector None None pupper None
1714 680440374763077632 NaN NaN 2015-12-25 17:30:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Merry Christmas. My gift to you is this tiny unicorn running into a wall in slow motion. 11/10 https://t.co/UKqIAnR3He NaN NaN NaN https://twitter.com/dog_rates/status/680440374763077632/video/1 11 10 None None None None None
1715 680221482581123072 NaN NaN 2015-12-25 03:00:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is CeCe. She's patiently waiting for Santa. 10/10 https://t.co/ZJUypFFwvg NaN NaN NaN https://twitter.com/dog_rates/status/680221482581123072/photo/1 10 10 CeCe None None None None
1716 680206703334408192 NaN NaN 2015-12-25 02:01:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I hope everyone enjoys this picture as much as I do. This is Toby. 12/10 https://t.co/vHnu1g9EJm NaN NaN NaN https://twitter.com/dog_rates/status/680206703334408192/photo/1 12 10 Toby None None None None
1717 680191257256136705 NaN NaN 2015-12-25 01:00:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a sleepy Christmas pupper 11/10 https://t.co/KXg0f8GNQ9 NaN NaN NaN https://twitter.com/dog_rates/status/680191257256136705/photo/1 11 10 None None None pupper None
1718 680176173301628928 NaN NaN 2015-12-25 00:00:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper is patiently waiting to scare the shit out of Santa. 10/10 https://t.co/NhXo67K6yt NaN NaN NaN https://twitter.com/dog_rates/status/680176173301628928/photo/1 10 10 None None None pupper None
1719 680161097740095489 NaN NaN 2015-12-24 23:00:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Goliath. He's an example of irony. Head is phenomenally round. Wants to be an ornament. 12/10 would hug gently https://t.co/72Dil0Aktw NaN NaN NaN https://twitter.com/dog_rates/status/680161097740095489/photo/1 12 10 Goliath None None None None
1720 680145970311643136 NaN NaN 2015-12-24 22:00:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Kawhi. He was doing fine until his hat fell off. He got it back though. 10/10 deep breaths pupper https://t.co/N5pM6WBx7e NaN NaN NaN https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1 10 10 Kawhi None None pupper None
1721 680130881361686529 NaN NaN 2015-12-24 21:00:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Reggie. His Santa hat is a little big. 10/10 he's still having fun https://t.co/w0dcGXq7qK NaN NaN NaN https://twitter.com/dog_rates/status/680130881361686529/photo/1 10 10 Reggie None None None None
1722 680115823365742593 NaN NaN 2015-12-24 20:00:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy https://t.co/Kt9vmw0Fap NaN NaN NaN https://twitter.com/dog_rates/status/680115823365742593/photo/1 9 10 Ozzy None None None None
1723 680100725817409536 NaN NaN 2015-12-24 19:00:23 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable https://t.co/lvMYbmKq8H NaN NaN NaN https://twitter.com/dog_rates/status/680100725817409536/photo/1 11 10 None None None pupper None
1724 680085611152338944 NaN NaN 2015-12-24 18:00:19 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> This is by far the most coordinated series of pictures I was sent. Downright impressive in every way. 12/10 for all https://t.co/etzLo3sdZE NaN NaN NaN https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1 12 10 by None None None None
1725 680070545539371008 NaN NaN 2015-12-24 17:00:27 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> Say hello to Emmie. She's trapped in an ornament. Tragic af. Looks pretty content tho. Maybe it's meant to be. 9/10 https://t.co/Fh7geodBCU NaN NaN NaN https://twitter.com/dog_rates/status/680070545539371008/photo/1 9 10 Emmie None None None None
1726 680055455951884288 NaN NaN 2015-12-24 16:00:30 +0000 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.co/MQfPK4zwuh NaN NaN NaN https://twitter.com/dog_rates/status/680055455951884288/photo/1 10 10 Sammy None None None None
1727 679877062409191424 NaN NaN 2015-12-24 04:11:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Penelope. She's a bacon frise. Total babe (lol get it like the movie). Doesn't bark tho. 5/10 very average dog https://t.co/SDcQYg0HSZ NaN NaN NaN https://twitter.com/dog_rates/status/679877062409191424/photo/1 5 10 Penelope None None None None
1728 679872969355714560 NaN NaN 2015-12-24 03:55:21 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Rocco. He's in a very intense game of freeze tag. Currently waiting to be unfrozen 10/10 https://t.co/xZXUKVXJ7l NaN NaN NaN https://vine.co/v/iAAxTbj1UAM 10 10 Rocco None None None None
1729 679862121895714818 NaN NaN 2015-12-24 03:12:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Dammit hooman I'm jus trynna lik the fler" 11/10 https://t.co/eRZRI8OTj7 NaN NaN NaN https://twitter.com/dog_rates/status/679862121895714818/photo/1 11 10 None None None None None
1730 679854723806179328 NaN NaN 2015-12-24 02:42:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bruce. He's a rare pup. Covered in Frosted Flakes. Nifty gold teeth. Overall good dog. 7/10 would pet firmly https://t.co/RtxxACzZ8A NaN NaN NaN https://twitter.com/dog_rates/status/679854723806179328/photo/1 7 10 Bruce None None None None
1731 679844490799091713 NaN NaN 2015-12-24 02:02:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Willie. He's floating away and needs your assistance. Please someone help Willie. 10/10 https://t.co/MJqygWqt8X NaN NaN NaN https://twitter.com/dog_rates/status/679844490799091713/photo/1 10 10 Willie None None None None
1732 679828447187857408 NaN NaN 2015-12-24 00:58:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC NaN NaN NaN https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1 13 10 None None None pupper None
1733 679777920601223168 NaN NaN 2015-12-23 21:37:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rinna. She's melting. 10/10 get inside pupper https://t.co/PA0czwucsb NaN NaN NaN https://twitter.com/dog_rates/status/679777920601223168/photo/1 10 10 Rinna None None pupper None
1734 679736210798047232 NaN NaN 2015-12-23 18:51:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP NaN NaN NaN https://twitter.com/dog_rates/status/679736210798047232/photo/1 9 10 None None None None None
1735 679729593985699840 NaN NaN 2015-12-23 18:25:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Hunter. He was playing with his ball minding his own business. Has no idea what happened to the carpet. 8/10 https://t.co/DbUTDI3u1R NaN NaN NaN https://twitter.com/dog_rates/status/679729593985699840/photo/1 8 10 Hunter None None None None
1736 679722016581222400 NaN NaN 2015-12-23 17:55:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 https://t.co/NL5QJwdEpF NaN NaN NaN https://twitter.com/dog_rates/status/679722016581222400/photo/1 8 10 Mike None None None None
1737 679530280114372609 NaN NaN 2015-12-23 05:13:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC NaN NaN NaN https://twitter.com/dog_rates/status/679530280114372609/photo/1 7 10 a None None None None
1738 679527802031484928 NaN NaN 2015-12-23 05:03:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This little pupper just arrived. 11/10 would snug https://t.co/DA5aqnSGfB NaN NaN NaN https://twitter.com/dog_rates/status/679527802031484928/photo/1 11 10 None None None pupper None
1739 679511351870550016 NaN NaN 2015-12-23 03:58:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 https://t.co/bwuV6FlRxr NaN NaN NaN https://twitter.com/dog_rates/status/679511351870550016/photo/1 7 10 William None None None None
1740 679503373272485890 NaN NaN 2015-12-23 03:26:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dwight. He's a pointy pupper. Very docile. Attracts marshmallows. Hurts to pet but definitely worth it 8/10 https://t.co/jjW7zTxY9Z NaN NaN NaN https://twitter.com/dog_rates/status/679503373272485890/photo/1 8 10 Dwight None None pupper None
1741 679475951516934144 NaN NaN 2015-12-23 01:37:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Evy. She doesn't want to be a Koala. 9/10 https://t.co/VITeF0Kl9L NaN NaN NaN https://twitter.com/dog_rates/status/679475951516934144/photo/1 9 10 Evy None None None None
1742 679462823135686656 NaN NaN 2015-12-23 00:45:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/M6vqkt2GKV NaN NaN NaN https://twitter.com/dog_rates/status/679462823135686656/photo/1 11 10 Hurley None None None None
1743 679405845277462528 NaN NaN 2015-12-22 20:59:10 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Crazy unseen footage from Jurassic Park. 10/10 for both dinosaur puppers https://t.co/L8wt2IpwxO NaN NaN NaN https://vine.co/v/iKVFEigMLxP 10 10 None None None None None
1744 679158373988876288 NaN NaN 2015-12-22 04:35:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag NaN NaN NaN https://twitter.com/dog_rates/status/679158373988876288/photo/1 11 10 Rubio None None None None
1745 679148763231985668 NaN NaN 2015-12-22 03:57:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 https://t.co/eWjWgbOCYL NaN NaN NaN https://twitter.com/dog_rates/status/679148763231985668/photo/1 8 10 None None None None None
1746 679132435750195208 NaN NaN 2015-12-22 02:52:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Louis. He's a river dancer. His friends think it's badass. All are very supportive. 10/10 for Louis https://t.co/qoIvjKMY58 NaN NaN NaN https://twitter.com/dog_rates/status/679132435750195208/photo/1 10 10 Louis None None None None
1747 679111216690831360 NaN NaN 2015-12-22 01:28:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE NaN NaN NaN https://twitter.com/dog_rates/status/679111216690831360/video/1 12 10 officially None None None None
1748 679062614270468097 NaN NaN 2015-12-21 22:15:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 NaN NaN NaN https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1 11 10 Chompsky None None None None
1749 679047485189439488 NaN NaN 2015-12-21 21:15:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup https://t.co/kTpr9PTMg1 NaN NaN NaN https://twitter.com/dog_rates/status/679047485189439488/photo/1 9 10 None None None None None
1750 679001094530465792 NaN NaN 2015-12-21 18:10:50 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Rascal. He's paddling an imaginary canoe. 11/10 https://t.co/Ajquq6oGSg NaN NaN NaN https://vine.co/v/iKIwAzEatd6 11 10 Rascal None None None None
1751 678991772295516161 NaN NaN 2015-12-21 17:33:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> If your Monday isn't going so well just take a look at this. Both 12/10 https://t.co/GJT6SILPGU NaN NaN NaN https://twitter.com/dog_rates/status/678991772295516161/photo/1 12 10 None None None None None
1752 678969228704284672 NaN NaN 2015-12-21 16:04:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Lola. She's a Metamorphic Chartreuse. Plays with her food. Insubordinate and churlish. Exquisite hardwood 11/10 https://t.co/etpBNXwN7f NaN NaN NaN https://twitter.com/dog_rates/status/678969228704284672/photo/1 11 10 Lola None None None None
1753 678800283649069056 NaN NaN 2015-12-21 04:52:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 https://t.co/DpCSVsl6vu NaN NaN NaN https://twitter.com/dog_rates/status/678800283649069056/photo/1 12 10 None None None pupper None
1754 678798276842360832 NaN NaN 2015-12-21 04:44:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Linda. She fucking hates trees. 7/10 https://t.co/blaY85FIxR NaN NaN NaN https://twitter.com/dog_rates/status/678798276842360832/photo/1 7 10 Linda None None None None
1755 678774928607469569 NaN NaN 2015-12-21 03:12:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tug. He's not required to wear the cone he just wants his voice to project more clearly. 11/10 https://t.co/Sp739Ou2qx NaN NaN NaN https://twitter.com/dog_rates/status/678774928607469569/photo/1 11 10 Tug None None None None
1756 678767140346941444 NaN NaN 2015-12-21 02:41:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mia. She makes awful decisions. 8/10 https://t.co/G6TQVgTcZz NaN NaN NaN https://twitter.com/dog_rates/status/678767140346941444/photo/1 8 10 Mia None None None None
1757 678764513869611008 NaN NaN 2015-12-21 02:30:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Wilson. He got caught humping the futon. He's like "dude, help me out here" 10/10 I'd help Wilson out https://t.co/m6XoclB0qv NaN NaN NaN https://twitter.com/dog_rates/status/678764513869611008/photo/1 10 10 Wilson None None None None
1758 678755239630127104 NaN NaN 2015-12-21 01:53:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dash. He didn't think the water would be that cold. Damn it Dash it's December. Think a little. 10/10 https://t.co/NqcOwG8pxW NaN NaN NaN https://twitter.com/dog_rates/status/678755239630127104/photo/1 10 10 Dash None None None None
1759 678740035362037760 NaN NaN 2015-12-21 00:53:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Tango. He's a large dog. Doesn't care much for personal space. Owner isn't very accepting. Tongue slip. 6/10 https://t.co/p2T5kGebxe NaN NaN NaN https://twitter.com/dog_rates/status/678740035362037760/photo/1 6 10 Tango None None None None
1760 678708137298427904 NaN NaN 2015-12-20 22:46:44 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Here we are witnessing a wild field pupper. Lost his wallet in there. Rather unfortunate. 10/10 good luck pup https://t.co/sZy9Co74Bw NaN NaN NaN https://vine.co/v/eQjxxYaQ60K 10 10 None None None pupper None
1761 678675843183484930 NaN NaN 2015-12-20 20:38:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet https://t.co/a8SqCaSo2r NaN NaN NaN https://twitter.com/dog_rates/status/678675843183484930/photo/1 2 10 None None None None None
1762 678643457146150913 NaN NaN 2015-12-20 18:29:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Grizz. He just arrived. Couldn't wait until Christmas. Worried bc he saw the swastikas on the carpet. 10/10 https://t.co/QBGwYrT7rv NaN NaN NaN https://twitter.com/dog_rates/status/678643457146150913/photo/1 10 10 Grizz None None None None
1763 678446151570427904 NaN NaN 2015-12-20 05:25:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Touching scene here. Really stirs up the emotions. The bond between father &amp; son. So beautiful. 10/10 for both pups https://t.co/AJWJHov5gx NaN NaN NaN https://twitter.com/dog_rates/status/678446151570427904/photo/1 10 10 None None None None None
1764 678424312106393600 NaN NaN 2015-12-20 03:58:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible https://t.co/rtMtjSl9pz NaN NaN NaN https://twitter.com/dog_rates/status/678424312106393600/photo/1 2 10 Crystal None None None None
1765 678410210315247616 NaN NaN 2015-12-20 03:02:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Jerome. He can shoot french fries out of his mouth at insane speeds. Deadly af. 10/10 https://t.co/dIy88HwrX8 NaN NaN NaN https://twitter.com/dog_rates/status/678410210315247616/photo/1 10 10 Jerome None None None None
1766 678399652199309312 NaN NaN 2015-12-20 02:20:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This made my day. 12/10 please enjoy https://t.co/VRTbo3aAcm NaN NaN NaN https://twitter.com/dog_rates/status/678399652199309312/video/1 12 10 None None None None None
1767 678396796259975168 NaN NaN 2015-12-20 02:09:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> These little fellas have opposite facial expressions. Both 12/10 https://t.co/LmThv0GWen NaN NaN NaN https://twitter.com/dog_rates/status/678396796259975168/photo/1,https://twitter.com/dog_rates/status/678396796259975168/photo/1 12 10 None None None None None
1768 678389028614488064 NaN NaN 2015-12-20 01:38:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bella. She just learned that her final grade in chem was a 92.49 \npoor pupper 11/10 https://t.co/auOoKuoveM NaN NaN NaN https://twitter.com/dog_rates/status/678389028614488064/photo/1 11 10 Bella None None pupper None
1769 678380236862578688 NaN NaN 2015-12-20 01:03:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Crumpet. He underestimated the snow. Quickly retreating. 10/10 https://t.co/a0Zx5LDFZa NaN NaN NaN https://twitter.com/dog_rates/status/678380236862578688/photo/1 10 10 Crumpet None None None None
1770 678341075375947776 NaN NaN 2015-12-19 22:28:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper likes tape. 12/10 https://t.co/cSp6w5GWgm NaN NaN NaN https://twitter.com/dog_rates/status/678341075375947776/photo/1 12 10 None None None pupper None
1771 678334497360859136 NaN NaN 2015-12-19 22:02:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rosie. She has a snazzy bow tie and a fin for a tail. Probably super fast underwater. Cool socks 10/10 https://t.co/GO76MdGBs0 NaN NaN NaN https://twitter.com/dog_rates/status/678334497360859136/photo/1 10 10 Rosie None None None None
1772 678278586130948096 NaN NaN 2015-12-19 18:19:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked https://t.co/JK8MByRzgj NaN NaN NaN https://twitter.com/dog_rates/status/678278586130948096/photo/1 10 10 None None None pupper None
1773 678255464182861824 NaN NaN 2015-12-19 16:47:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup https://t.co/nZhmRwZzWv NaN NaN NaN https://twitter.com/dog_rates/status/678255464182861824/photo/1 9 10 Jessifer None None None None
1774 678023323247357953 6.780211e+17 4.196984e+09 2015-12-19 01:25:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After getting lost in Reese's eyes for several minutes we're going to upgrade him to a 13/10 NaN NaN NaN NaN 13 10 None None None None None
1775 678021115718029313 NaN NaN 2015-12-19 01:16:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Reese. He likes holding hands. 12/10 https://t.co/cbLroGCbmh NaN NaN NaN https://twitter.com/dog_rates/status/678021115718029313/photo/1 12 10 Reese None None None None
1776 677961670166224897 NaN NaN 2015-12-18 21:20:32 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is Izzy. She's showing off the dance moves she's been working on. 11/10 I guess hard work pays off https://t.co/4JS92YAxTi NaN NaN NaN https://vine.co/v/iKuMDuYV0aZ 11 10 Izzy None None None None
1777 677918531514703872 NaN NaN 2015-12-18 18:29:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 https://t.co/lWL2IMJqLR NaN NaN NaN https://twitter.com/dog_rates/status/677918531514703872/photo/1 10 10 None None None None None
1778 677895101218201600 NaN NaN 2015-12-18 16:56:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 https://t.co/EJImi1udYb NaN NaN NaN https://twitter.com/dog_rates/status/677895101218201600/photo/1 9 10 None None None None None
1779 677716515794329600 NaN NaN 2015-12-18 05:06:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq NaN NaN NaN https://twitter.com/dog_rates/status/677716515794329600/photo/1 144 120 None None None None None
1780 677700003327029250 NaN NaN 2015-12-18 04:00:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ralph. He's an interpretive dancer. 10/10 https://t.co/zoDdPyPFsa NaN NaN NaN https://twitter.com/dog_rates/status/677700003327029250/photo/1 10 10 Ralph None None None None
1781 677698403548192770 NaN NaN 2015-12-18 03:54:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sadie. She got her holidays confused. 9/10 damn it Sadie https://t.co/fm7HxOsuPK NaN NaN NaN https://twitter.com/dog_rates/status/677698403548192770/photo/1 9 10 Sadie None None None None
1782 677687604918272002 NaN NaN 2015-12-18 03:11:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 https://t.co/gzkuVGRgAD NaN NaN NaN https://twitter.com/dog_rates/status/677687604918272002/photo/1 11 10 None None None None None
1783 677673981332312066 NaN NaN 2015-12-18 02:17:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 https://t.co/GFVIHIod0Z NaN NaN NaN https://twitter.com/dog_rates/status/677673981332312066/photo/1 9 10 None None None None None
1784 677662372920729601 NaN NaN 2015-12-18 01:31:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> In honor of the new Star Wars movie. Here's Yoda pug. 12/10 pet really well, would I https://t.co/pvjdRn00XH NaN NaN NaN https://twitter.com/dog_rates/status/677662372920729601/photo/1 12 10 None None None None None
1785 677644091929329666 NaN NaN 2015-12-18 00:18:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND NaN NaN NaN https://twitter.com/dog_rates/status/677644091929329666/video/1 11 10 a None None None None
1786 677573743309385728 NaN NaN 2015-12-17 19:39:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sandy. He's sexually confused. Thinks he's a pigeon. Also an All-American cheese catcher. 10/10 so petable https://t.co/Htu8plSqEu NaN NaN NaN https://twitter.com/dog_rates/status/677573743309385728/photo/1,https://twitter.com/dog_rates/status/677573743309385728/photo/1 10 10 Sandy None None None None
1787 677565715327688705 NaN NaN 2015-12-17 19:07:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 https://t.co/EX9oR55VMe NaN NaN NaN https://twitter.com/dog_rates/status/677565715327688705/photo/1 6 10 None None None None None
1788 677557565589463040 NaN NaN 2015-12-17 18:34:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Reckless pupper here. Not even looking at road. Absolute menace. No regard for fellow pupper lives. 10/10 still cute https://t.co/96IBkOYB7j NaN NaN NaN https://twitter.com/dog_rates/status/677557565589463040/photo/1 10 10 None None None pupper None
1789 677547928504967168 NaN NaN 2015-12-17 17:56:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Not much to say here. I just think everyone needs to see this. 12/10 https://t.co/AGag0hFHpe NaN NaN NaN https://twitter.com/dog_rates/status/677547928504967168/photo/1 12 10 None None None None None
1790 677530072887205888 NaN NaN 2015-12-17 16:45:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun https://t.co/DKe9DBnnHE NaN NaN NaN https://twitter.com/dog_rates/status/677530072887205888/photo/1 9 10 Axel None None None None
1791 677335745548390400 NaN NaN 2015-12-17 03:53:20 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Downright inspiring 12/10 https://t.co/vSLtYBWHcQ NaN NaN NaN https://vine.co/v/hbLbH77Ar67 12 10 None None None None None
1792 677334615166730240 NaN NaN 2015-12-17 03:48:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This dog gave up mid jump. 9/10 https://t.co/KmMv3Y2zI8 NaN NaN NaN https://twitter.com/dog_rates/status/677334615166730240/photo/1,https://twitter.com/dog_rates/status/677334615166730240/photo/1 9 10 None None None None None
1793 677331501395156992 NaN NaN 2015-12-17 03:36:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af https://t.co/FS7eJQM2F4 NaN NaN NaN https://twitter.com/dog_rates/status/677331501395156992/photo/1 9 10 Humphrey None None None None
1794 677328882937298944 NaN NaN 2015-12-17 03:26:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Derek. All the dogs adore Derek. He's a great guy. 10/10 really solid pup https://t.co/KgcsGNb61s NaN NaN NaN https://twitter.com/dog_rates/status/677328882937298944/photo/1 10 10 Derek None None None None
1795 677314812125323265 NaN NaN 2015-12-17 02:30:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Tassy &amp; Bee. Tassy is pretty chill, but Bee is convinced the Ruffles are haunted. 10/10 &amp; 11/10 respectively https://t.co/fgORpmTN9C NaN NaN NaN https://twitter.com/dog_rates/status/677314812125323265/photo/1,https://twitter.com/dog_rates/status/677314812125323265/photo/1 10 10 Tassy None None None None
1796 677301033169788928 NaN NaN 2015-12-17 01:35:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson https://t.co/IoLRvF0Kak NaN NaN NaN https://twitter.com/dog_rates/status/677301033169788928/photo/1 5 10 Juckson None None None None
1797 677269281705472000 NaN NaN 2015-12-16 23:29:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb NaN NaN NaN https://twitter.com/dog_rates/status/677269281705472000/photo/1 10 10 the None None pupper None
1798 677228873407442944 NaN NaN 2015-12-16 20:48:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Chuq. He just wants to fit in. 11/10 https://t.co/hGkMCjZzn4 NaN NaN NaN https://twitter.com/dog_rates/status/677228873407442944/photo/1 11 10 Chuq None None None None
1799 677187300187611136 NaN NaN 2015-12-16 18:03:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 https://t.co/gzI0m6wXRo NaN NaN NaN https://twitter.com/dog_rates/status/677187300187611136/photo/1 9 10 None None None None None
1800 676975532580409345 NaN NaN 2015-12-16 04:01:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cooper. He doesn't know how cheese works. Likes the way it feels on his face. Cheeky tongue slip. 11/10 https://t.co/j1zczS0lI5 NaN NaN NaN https://twitter.com/dog_rates/status/676975532580409345/photo/1 11 10 Cooper None None None None
1801 676957860086095872 NaN NaN 2015-12-16 02:51:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 10/10 I'd follow this dog into battle no questions asked https://t.co/ngTNXYQF0L NaN NaN NaN https://twitter.com/dog_rates/status/676957860086095872/video/1 10 10 None None None None None
1802 676949632774234114 NaN NaN 2015-12-16 02:19:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa NaN NaN NaN https://twitter.com/dog_rates/status/676949632774234114/photo/1 8 10 Tyrus None None None None
1803 676948236477857792 NaN NaN 2015-12-16 02:13:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Karl. Karl thinks he's slick. 6/10 sneaky pup https://t.co/Lo4ALwjVh4 NaN NaN NaN https://twitter.com/dog_rates/status/676948236477857792/photo/1 6 10 Karl None None None None
1804 676946864479084545 NaN NaN 2015-12-16 02:08:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 https://t.co/2mXALbgBTV NaN NaN NaN https://twitter.com/dog_rates/status/676946864479084545/photo/1 12 10 None None None None None
1805 676942428000112642 NaN NaN 2015-12-16 01:50:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Who leaves the last cupcake just sitting there? 9/10 https://t.co/PWMqAoEx2a NaN NaN NaN https://twitter.com/dog_rates/status/676942428000112642/photo/1 9 10 None None None None None
1806 676936541936185344 NaN NaN 2015-12-16 01:27:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.co/mqvaxleHRz NaN NaN NaN https://twitter.com/dog_rates/status/676936541936185344/photo/1 8 10 None None None pupper None
1807 676916996760600576 NaN NaN 2015-12-16 00:09:23 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Super speedy pupper. Does not go gentle into that goodnight. 10/10 https://t.co/uPXBXS1XNb NaN NaN NaN https://vine.co/v/imJ0BdZOJTw 10 10 None None None pupper None
1808 676897532954456065 NaN NaN 2015-12-15 22:52:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk https://t.co/Avq4awulqk NaN NaN NaN https://twitter.com/dog_rates/status/676897532954456065/photo/1 5 10 None None None None None
1809 676864501615042560 NaN NaN 2015-12-15 20:40:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Ash. He's just a head now. Lost his body during the Third Crusade. Still in good spirits. 10/10 would pet well https://t.co/NJj2uP0atK NaN NaN NaN https://twitter.com/dog_rates/status/676864501615042560/photo/1 10 10 Ash None None None None
1810 676821958043033607 NaN NaN 2015-12-15 17:51:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Finally some constructive political change in this country. 11/10 https://t.co/mvQaETHVSb NaN NaN NaN https://twitter.com/dog_rates/status/676821958043033607/photo/1,https://twitter.com/dog_rates/status/676821958043033607/photo/1 11 10 None None None None None
1811 676819651066732545 NaN NaN 2015-12-15 17:42:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Watch out Airbud. This pupper is also good at the sports. 12/10 I'm thinking D1 https://t.co/1HrFdo7M0C NaN NaN NaN https://twitter.com/dog_rates/status/676819651066732545/photo/1,https://twitter.com/dog_rates/status/676819651066732545/photo/1 12 10 None None None pupper None
1812 676811746707918848 NaN NaN 2015-12-15 17:11:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Penny &amp; Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both https://t.co/aqBHjjh5VD NaN NaN NaN https://twitter.com/dog_rates/status/676811746707918848/photo/1 9 10 Penny None None None None
1813 676776431406465024 NaN NaN 2015-12-15 14:50:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When someone yells "cops!" at a party and you gotta get your drunk friend out of there. 10/10 https://t.co/4rMZi5Ca1k NaN NaN NaN https://twitter.com/dog_rates/status/676776431406465024/video/1 10 10 None None None None None
1814 676617503762681856 NaN NaN 2015-12-15 04:19:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 https://t.co/mpQl2rJjDh NaN NaN NaN https://twitter.com/dog_rates/status/676617503762681856/photo/1 13 10 None None None pupper None
1815 676613908052996102 NaN NaN 2015-12-15 04:05:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is the saddest/sweetest/best picture I've been sent. 12/10 😢🐶 https://t.co/vQ2Lw1BLBF NaN NaN NaN https://twitter.com/dog_rates/status/676613908052996102/photo/1 12 10 the None None None None
1816 676606785097199616 NaN NaN 2015-12-15 03:36:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> *screeches for a sec and then faints* 12/10 https://t.co/N5QL4ySBEx NaN NaN NaN https://twitter.com/dog_rates/status/676606785097199616/photo/1 12 10 None None None None None
1817 676603393314578432 NaN NaN 2015-12-15 03:23:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Godzilla pupper. He had a ruff childhood &amp; now deflects that pain outward by terrorizing cities. Tragic 9/10 https://t.co/g1tLGkyaxr NaN NaN NaN https://twitter.com/dog_rates/status/676603393314578432/photo/1 9 10 Godzilla None None pupper None
1818 676593408224403456 NaN NaN 2015-12-15 02:43:33 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This pupper loves leaves. 11/10 for committed leaf lover https://t.co/APvLqbEhkF NaN NaN NaN https://vine.co/v/eEQQaPFbgOY 11 10 None None None pupper None
1819 676590572941893632 6.765883e+17 4.196984e+09 2015-12-15 02:32:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After some outrage from the crowd. Bubbles is being upgraded to a 7/10. That's as high as I'm going. Thank you NaN NaN NaN NaN 7 10 None None None None None
1820 676588346097852417 NaN NaN 2015-12-15 02:23:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 https://t.co/Nrhvc5tLFT NaN NaN NaN https://twitter.com/dog_rates/status/676588346097852417/photo/1 5 10 Bubbles None None None None
1821 676582956622721024 NaN NaN 2015-12-15 02:02:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Vinnie. He's having fun while being safe. Well not a lot of fun, but definitely safe, and that's important 8/10 https://t.co/vZYtynZZlH NaN NaN NaN https://twitter.com/dog_rates/status/676582956622721024/photo/1 8 10 Vinnie None None None None
1822 676575501977128964 NaN NaN 2015-12-15 01:32:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 https://t.co/NsGyECJuq7 NaN NaN NaN https://twitter.com/dog_rates/status/676575501977128964/photo/1 8 10 None None None pupper None
1823 676533798876651520 NaN NaN 2015-12-14 22:46:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ NaN NaN NaN https://twitter.com/dog_rates/status/676533798876651520/photo/1 12 10 None None None None None
1824 676496375194980353 NaN NaN 2015-12-14 20:17:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup https://t.co/eoBCjSFajX NaN NaN NaN https://twitter.com/dog_rates/status/676496375194980353/photo/1 9 10 Griffin None None None None
1825 676470639084101634 NaN NaN 2015-12-14 18:35:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Three generations of pupper. 11/10 for all https://t.co/tAmQYvzrau NaN NaN NaN https://twitter.com/dog_rates/status/676470639084101634/photo/1 11 10 None None None pupper None
1826 676440007570247681 NaN NaN 2015-12-14 16:34:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each https://t.co/dB0H9hdZai NaN NaN NaN https://twitter.com/dog_rates/status/676440007570247681/photo/1,https://twitter.com/dog_rates/status/676440007570247681/photo/1 11 10 None None None None None
1827 676430933382295552 NaN NaN 2015-12-14 15:57:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Duke. He's an Urban Parmesan. They know he's scared of the green rubber dog. "Why u do dis?" thinks Duke. 10/10 https://t.co/3bim9U5Idr NaN NaN NaN https://twitter.com/dog_rates/status/676430933382295552/photo/1 10 10 Duke None None None None
1828 676263575653122048 NaN NaN 2015-12-14 04:52:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year https://t.co/fTgbq1UBR9 NaN NaN NaN https://twitter.com/dog_rates/status/676263575653122048/photo/1 10 10 None None None pupper None
1829 676237365392908289 NaN NaN 2015-12-14 03:08:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 https://t.co/dOLQddhXLZ NaN NaN NaN https://twitter.com/dog_rates/status/676237365392908289/photo/1 8 10 Winston None None None None
1830 676219687039057920 NaN NaN 2015-12-14 01:58:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kenneth. He's stuck in a bubble. 10/10 hang in there Kenneth https://t.co/uQt37xlYMJ NaN NaN NaN https://twitter.com/dog_rates/status/676219687039057920/photo/1 10 10 Kenneth None None None None
1831 676215927814406144 NaN NaN 2015-12-14 01:43:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Herm. He just wants to be like the other dogs. Sneaky tongue slip. Super fuzzy. 9/10 would cuddle firmly https://t.co/tg8h9lzCHv NaN NaN NaN https://twitter.com/dog_rates/status/676215927814406144/photo/1 9 10 Herm None None None None
1832 676191832485810177 NaN NaN 2015-12-14 00:07:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog https://t.co/gwryaJO4tC NaN NaN NaN https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1 10 10 None None None None None
1833 676146341966438401 NaN NaN 2015-12-13 21:07:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bert. He likes flowers. 10/10 https://t.co/lmQRrNxaQu NaN NaN NaN https://twitter.com/dog_rates/status/676146341966438401/photo/1 10 10 Bert None None None None
1834 676121918416756736 NaN NaN 2015-12-13 19:30:01 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Here we are witnessing a very excited dog. Clearly has no control over neck movements. 8/10 would still pet https://t.co/ICNIjSkrXs NaN NaN NaN https://vine.co/v/iZXg7VpeDAv 8 10 None None None None None
1835 676101918813499392 NaN NaN 2015-12-13 18:10:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Striker. He's ready for Christmas. 11/10 https://t.co/B3xxSLjQSH NaN NaN NaN https://twitter.com/dog_rates/status/676101918813499392/photo/1 11 10 Striker None None None None
1836 676098748976615425 NaN NaN 2015-12-13 17:57:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 https://t.co/REyE5YKVBb NaN NaN NaN https://twitter.com/dog_rates/status/676098748976615425/photo/1 3 10 None None None None None
1837 676089483918516224 NaN NaN 2015-12-13 17:21:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp NaN NaN NaN https://twitter.com/dog_rates/status/676089483918516224/photo/1 9 10 None None None None None
1838 675898130735476737 NaN NaN 2015-12-13 04:40:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 https://t.co/G0pQiFGM7O NaN NaN NaN https://twitter.com/dog_rates/status/675898130735476737/photo/1 10 10 None None None pupper None
1839 675891555769696257 NaN NaN 2015-12-13 04:14:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone https://t.co/kiW6Knb7Gp NaN NaN NaN https://twitter.com/dog_rates/status/675891555769696257/photo/1 6 10 Donny None None None None
1840 675888385639251968 NaN NaN 2015-12-13 04:02:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith https://t.co/06oZdehGEa NaN NaN NaN https://twitter.com/dog_rates/status/675888385639251968/photo/1 10 10 None None None None None
1841 675878199931371520 NaN NaN 2015-12-13 03:21:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Ok, I'll admit this is a pretty adorable bunny hopping towards the ocean but please only send in dogs... 11/10 https://t.co/sfsVCGIipI NaN NaN NaN https://twitter.com/dog_rates/status/675878199931371520/photo/1 11 10 None None None None None
1842 675870721063669760 6.757073e+17 4.196984e+09 2015-12-13 02:51:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> &amp; this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6 NaN NaN NaN https://twitter.com/dog_rates/status/675870721063669760/photo/1 11 10 None None None None None
1843 675853064436391936 NaN NaN 2015-12-13 01:41:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw NaN NaN NaN https://twitter.com/dog_rates/status/675853064436391936/photo/1,https://twitter.com/dog_rates/status/675853064436391936/photo/1 88 80 None None None None None
1844 675849018447167488 6.758457e+17 4.196984e+09 2015-12-13 01:25:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This dog is being demoted to a 9/10 for not wearing a helmet while riding. Gotta stay safe out there. Thank you NaN NaN NaN NaN 9 10 None None None None None
1845 675845657354215424 NaN NaN 2015-12-13 01:12:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pepper. She's not fully comfortable riding her imaginary bike yet. 10/10 don't worry pupper, it gets easier https://t.co/40dj4eTsXG NaN NaN NaN https://twitter.com/dog_rates/status/675845657354215424/photo/1 10 10 Pepper None None pupper None
1846 675822767435051008 NaN NaN 2015-12-12 23:41:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s https://t.co/GK2HJtkdQk NaN NaN NaN https://twitter.com/dog_rates/status/675822767435051008/photo/1 10 10 None None None None None
1847 675820929667219457 NaN NaN 2015-12-12 23:34:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s https://t.co/lyXX3v5j4s NaN NaN NaN https://twitter.com/dog_rates/status/675820929667219457/photo/1 11 10 None None None None None
1848 675798442703122432 NaN NaN 2015-12-12 22:04:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bernie. He just touched a boob for the first time. 10/10 https://t.co/whQKMygnK6 NaN NaN NaN https://twitter.com/dog_rates/status/675798442703122432/photo/1 10 10 Bernie None None None None
1849 675781562965868544 NaN NaN 2015-12-12 20:57:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Buddah. He was Waldo for Halloween. 11/10 https://t.co/DVAqAnb624 NaN NaN NaN https://twitter.com/dog_rates/status/675781562965868544/photo/1 11 10 Buddah None None None None
1850 675740360753160193 NaN NaN 2015-12-12 18:13:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here's a pupper licking in slow motion. 12/10 please enjoy https://t.co/AUJi8ujxw9 NaN NaN NaN https://twitter.com/dog_rates/status/675740360753160193/video/1 12 10 None None None pupper None
1851 675710890956750848 NaN NaN 2015-12-12 16:16:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lenny. He was just told that he couldn't explore the fish tank. 12/10 smh all that work for nothing https://t.co/JWi6YrpiO1 NaN NaN NaN https://twitter.com/dog_rates/status/675710890956750848/photo/1,https://twitter.com/dog_rates/status/675710890956750848/photo/1 12 10 Lenny None None None None
1852 675707330206547968 6.754971e+17 4.196984e+09 2015-12-12 16:02:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> We've got ourselves a battle here. Watch out Reggie. 11/10 https://t.co/ALJvbtcwf0 NaN NaN NaN https://twitter.com/dog_rates/status/675707330206547968/photo/1 11 10 None None None None None
1853 675706639471788032 NaN NaN 2015-12-12 15:59:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI NaN NaN NaN https://twitter.com/dog_rates/status/675706639471788032/photo/1 10 10 a None None None None
1854 675534494439489536 NaN NaN 2015-12-12 04:35:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj NaN NaN NaN https://twitter.com/dog_rates/status/675534494439489536/photo/1 11 10 a None None None None
1855 675531475945709568 NaN NaN 2015-12-12 04:23:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ellie AKA Queen Slayer of the Orbs. Very self-motivated. Great yard. Rad foliage. 10/10 would pet diligently https://t.co/c9jmg3Xtzn NaN NaN NaN https://twitter.com/dog_rates/status/675531475945709568/photo/1 10 10 Ellie None None None None
1856 675522403582218240 NaN NaN 2015-12-12 03:47:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sammy. He's a Motorola Firefox. Hat under hoodie (must be a half-decent up and coming white rapper) 10/10 https://t.co/rO2zxf0OQ0 NaN NaN NaN https://twitter.com/dog_rates/status/675522403582218240/photo/1 10 10 Sammy None None None None
1857 675517828909424640 NaN NaN 2015-12-12 03:29:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 12/10 stay woke https://t.co/XDiQw4Akiw NaN NaN NaN https://twitter.com/dog_rates/status/675517828909424640/photo/1 12 10 None None None None None
1858 675501075957489664 NaN NaN 2015-12-12 02:23:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH NaN NaN NaN https://twitter.com/dog_rates/status/675501075957489664/photo/1 13 10 None None None None None
1859 675497103322386432 NaN NaN 2015-12-12 02:07:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Reggie. He's going for the world record. Must concentrate. Focus up pup. 11/10 we all believe in you Reggie https://t.co/h3AWz4AzuC NaN NaN NaN https://twitter.com/dog_rates/status/675497103322386432/photo/1 11 10 Reggie None None None None
1860 675489971617296384 NaN NaN 2015-12-12 01:38:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 https://t.co/MnTrKaQ8Wn NaN NaN NaN https://twitter.com/dog_rates/status/675489971617296384/photo/1 10 10 None None None None None
1861 675483430902214656 NaN NaN 2015-12-12 01:12:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 https://t.co/C3tlKVq7eO NaN NaN NaN https://twitter.com/dog_rates/status/675483430902214656/photo/1 5 10 None None None None None
1862 675432746517426176 NaN NaN 2015-12-11 21:51:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Happy Friday. Here's some golden puppers. 12/10 for all https://t.co/wNkqAED6lG NaN NaN NaN https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1 12 10 None None None None None
1863 675372240448454658 NaN NaN 2015-12-11 17:51:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> The tail alone is 13/10. Great dog, better owner https://t.co/IyAXinfyju NaN NaN NaN https://twitter.com/dog_rates/status/675372240448454658/photo/1 13 10 None None None None None
1864 675362609739206656 NaN NaN 2015-12-11 17:12:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Daisy. She loves that shoe. Still no seat belt. Super churlish. 12/10 the dogs are killing it today https://t.co/cZlkvgRPdn NaN NaN NaN https://twitter.com/dog_rates/status/675362609739206656/photo/1 12 10 Daisy None None None None
1865 675354435921575936 NaN NaN 2015-12-11 16:40:19 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC NaN NaN NaN https://twitter.com/dog_rates/status/675354435921575936/video/1 13 10 None None None None None
1866 675349384339542016 6.749998e+17 4.196984e+09 2015-12-11 16:20:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP NaN NaN NaN https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1 13 10 None None None None None
1867 675334060156301312 NaN NaN 2015-12-11 15:19:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Good morning here's a grass pupper. 12/10 https://t.co/2d68FmWGGs NaN NaN NaN https://twitter.com/dog_rates/status/675334060156301312/photo/1,https://twitter.com/dog_rates/status/675334060156301312/photo/1 12 10 None None None pupper None
1868 675166823650848770 NaN NaN 2015-12-11 04:14:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Arnold. He broke his leg saving a handicapped child from a forest fire. True hero. 10/10 inspirational dog https://t.co/bijCeHeX4C NaN NaN NaN https://twitter.com/dog_rates/status/675166823650848770/photo/1 10 10 Arnold None None None None
1869 675153376133427200 NaN NaN 2015-12-11 03:21:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table https://t.co/RDXCfk8hK0 NaN NaN NaN https://twitter.com/dog_rates/status/675153376133427200/photo/1 1 10 None None None None None
1870 675149409102012420 NaN NaN 2015-12-11 03:05:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> holy shit 12/10 https://t.co/p6O8X93bTQ NaN NaN NaN https://twitter.com/dog_rates/status/675149409102012420/photo/1 12 10 None None None None None
1871 675147105808306176 NaN NaN 2015-12-11 02:56:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 https://t.co/f50mbB4UWS NaN NaN NaN https://twitter.com/dog_rates/status/675147105808306176/photo/1 10 10 None None None None None
1872 675146535592706048 NaN NaN 2015-12-11 02:54:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 https://t.co/Uz52oYnHzF NaN NaN NaN https://twitter.com/dog_rates/status/675146535592706048/photo/1 7 10 Coops None None None None
1873 675145476954566656 NaN NaN 2015-12-11 02:49:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all https://t.co/YDgstgIDGs NaN NaN NaN https://twitter.com/dog_rates/status/675145476954566656/photo/1 9 10 None None None None None
1874 675135153782571009 NaN NaN 2015-12-11 02:08:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Steven. He got locked outside. Damn it Steven. 5/10 nice grill tho https://t.co/zf7Sxxjfp3 NaN NaN NaN https://twitter.com/dog_rates/status/675135153782571009/photo/1 5 10 Steven None None None None
1875 675113801096802304 NaN NaN 2015-12-11 00:44:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Zuzu. He just graduated college. Astute pupper. Needs 2 leashes to contain him. Wasn't ready for the pic. 10/10 https://t.co/2H5SKmk0k7 NaN NaN NaN https://twitter.com/dog_rates/status/675113801096802304/photo/1 10 10 Zuzu None None pupper None
1876 675111688094527488 NaN NaN 2015-12-11 00:35:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 https://t.co/lFU9W31Fg9 NaN NaN NaN https://twitter.com/dog_rates/status/675111688094527488/photo/1 8 10 Oliver None None None None
1877 675109292475830276 NaN NaN 2015-12-11 00:26:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 NaN NaN NaN https://twitter.com/dog_rates/status/675109292475830276/photo/1 9 10 a None None None None
1878 675047298674663426 NaN NaN 2015-12-10 20:19:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI NaN NaN NaN https://twitter.com/dog_rates/status/675047298674663426/photo/1 11 10 a None None None None
1879 675015141583413248 NaN NaN 2015-12-10 18:12:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Moe. He's a golden Fetty Woof. Doesn't respect the authorities. Might own a motorhome? 10/10 revolutionary pup https://t.co/JAncIdNp8G NaN NaN NaN https://twitter.com/dog_rates/status/675015141583413248/photo/1 10 10 Moe None None None None
1880 675006312288268288 NaN NaN 2015-12-10 17:37:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Mollie. This pic was taken after she bet all her toys on Ronda Rousey. 10/10 hang in there pupper https://t.co/QMmAqA9VqO NaN NaN NaN https://twitter.com/dog_rates/status/675006312288268288/photo/1 10 10 Mollie None None pupper None
1881 675003128568291329 NaN NaN 2015-12-10 17:24:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Laela. She's adorable. Magnificent eyes. But I don't see a seat belt. Insubordinate.. and churlish. Still 12/10 https://t.co/pCGDgLkLo6 NaN NaN NaN https://twitter.com/dog_rates/status/675003128568291329/photo/1,https://twitter.com/dog_rates/status/675003128568291329/photo/1 12 10 Laela None None None None
1882 674999807681908736 6.747934e+17 4.196984e+09 2015-12-10 17:11:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8 NaN NaN NaN https://twitter.com/dog_rates/status/674999807681908736/photo/1 13 10 None None None None None
1883 674805413498527744 NaN NaN 2015-12-10 04:18:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 https://t.co/vqFkgYPCW8 NaN NaN NaN https://twitter.com/dog_rates/status/674805413498527744/video/1 10 10 None None None None None
1884 674800520222154752 NaN NaN 2015-12-10 03:59:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tedders. He broke his leg saving babies from the Pompeii eruption. 11/10 where's his Purple Heart? @POTUS https://t.co/cMI2AcLm4B NaN NaN NaN https://twitter.com/dog_rates/status/674800520222154752/photo/1 11 10 Tedders None None None None
1885 674793399141146624 6.717299e+17 4.196984e+09 2015-12-10 03:30:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I have found another. 13/10 https://t.co/HwroPYv8pY NaN NaN NaN https://twitter.com/dog_rates/status/674793399141146624/photo/1 13 10 None None None None None
1886 674790488185167872 NaN NaN 2015-12-10 03:19:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> ER... MER... GERD 13/10 https://t.co/L1puJISV1a NaN NaN NaN https://twitter.com/dog_rates/status/674790488185167872/photo/1 13 10 None None None None None
1887 674788554665512960 NaN NaN 2015-12-10 03:11:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 https://t.co/P3ElQ2wsjb NaN NaN NaN https://twitter.com/dog_rates/status/674788554665512960/photo/1 9 10 Maggie None None None None
1888 674781762103414784 NaN NaN 2015-12-10 02:44:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 https://t.co/ot8yMUGodj NaN NaN NaN https://twitter.com/dog_rates/status/674781762103414784/photo/1 8 10 None None None None None
1889 674774481756377088 NaN NaN 2015-12-10 02:15:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Superpup. His head isn't proportional to his body. Has yet to serve any justice. 11/10 maybe one day pupper https://t.co/gxIFgg8ktm NaN NaN NaN https://twitter.com/dog_rates/status/674774481756377088/photo/1 11 10 Superpup None None pupper None
1890 674767892831932416 NaN NaN 2015-12-10 01:49:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pup was carefully tossed to make it look like she's riding that horse. I have no words this is fabulous. 12/10 https://t.co/Bob33W4sfD NaN NaN NaN https://twitter.com/dog_rates/status/674767892831932416/photo/1 12 10 None None None None None
1891 674764817387900928 NaN NaN 2015-12-10 01:37:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s https://t.co/RBiQ8hPqwr NaN NaN NaN https://twitter.com/dog_rates/status/674764817387900928/photo/1,https://twitter.com/dog_rates/status/674764817387900928/photo/1 10 10 None None None None None
1892 674754018082705410 6.747522e+17 4.196984e+09 2015-12-10 00:54:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Just received another perfect photo of dogs and the sunset. 12/10 https://t.co/9YmNcxA2Cc NaN NaN NaN https://twitter.com/dog_rates/status/674754018082705410/photo/1 12 10 None None None None None
1893 674752233200820224 NaN NaN 2015-12-10 00:47:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Everyone please just appreciate how perfect these two photos are. 12/10 for both https://t.co/rLf7asnHxO NaN NaN NaN https://twitter.com/dog_rates/status/674752233200820224/photo/1,https://twitter.com/dog_rates/status/674752233200820224/photo/1 12 10 None None None None None
1894 674743008475090944 NaN NaN 2015-12-10 00:10:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sophie. She just saw a spider. 10/10 don't just stand there Sophie https://t.co/VagYftZccT NaN NaN NaN https://twitter.com/dog_rates/status/674743008475090944/photo/1 10 10 Sophie None None None None
1895 674742531037511680 6.747400e+17 4.196984e+09 2015-12-10 00:08:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Some clarification is required. The dog is singing Cher and that is more than worthy of an 11/10. Thank you NaN NaN NaN NaN 11 10 None None None None None
1896 674739953134403584 NaN NaN 2015-12-09 23:58:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 https://t.co/URNs5zFskc NaN NaN NaN https://twitter.com/dog_rates/status/674739953134403584/photo/1 11 10 None None None None None
1897 674737130913071104 NaN NaN 2015-12-09 23:47:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 &amp; 4/10 https://t.co/KNfLnYPmYh NaN NaN NaN https://twitter.com/dog_rates/status/674737130913071104/photo/1 10 10 Rufio None None pupper None
1898 674690135443775488 NaN NaN 2015-12-09 20:40:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Patrick. He's an exotic pup. Jumps great distances for a dog. Always gets injured when I toss him a ball. 3/10 https://t.co/Unz1uNrOzo NaN NaN NaN https://twitter.com/dog_rates/status/674690135443775488/photo/1 3 10 Patrick None None None None
1899 674670581682434048 NaN NaN 2015-12-09 19:22:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jeb &amp; Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s https://t.co/NRNExUy9Hm NaN NaN NaN https://twitter.com/dog_rates/status/674670581682434048/photo/1 9 10 Jeb None None None None
1900 674664755118911488 NaN NaN 2015-12-09 18:59:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rodman. He's getting destroyed by the surfs. Valiant effort though. 10/10 better than most puppers probably https://t.co/S8wCLemrNb NaN NaN NaN https://twitter.com/dog_rates/status/674664755118911488/photo/1 10 10 Rodman None None None None
1901 674646392044941312 NaN NaN 2015-12-09 17:46:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 &amp; 8/10 https://t.co/YPfw7oahbD NaN NaN NaN https://twitter.com/dog_rates/status/674646392044941312/photo/1 5 10 None None None None None
1902 674644256330530816 NaN NaN 2015-12-09 17:38:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you see sophomores in high school driving. 11/10 https://t.co/m6aC8d1Kzp NaN NaN NaN https://twitter.com/dog_rates/status/674644256330530816/photo/1 11 10 None None None None None
1903 674638615994089473 NaN NaN 2015-12-09 17:15:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog https://t.co/F33n1hy3LL NaN NaN NaN https://twitter.com/dog_rates/status/674638615994089473/photo/1 12 10 None None None pupper None
1904 674632714662858753 NaN NaN 2015-12-09 16:52:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet https://t.co/EJzzNHE8bE NaN NaN NaN https://twitter.com/dog_rates/status/674632714662858753/photo/1 5 10 None None None None None
1905 674606911342424069 6.744689e+17 4.196984e+09 2015-12-09 15:09:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> The 13/10 also takes into account this impeccable yard. Louis is great but the future dad in me can't ignore that luscious green grass NaN NaN NaN NaN 13 10 None None None None None
1906 674468880899788800 NaN NaN 2015-12-09 06:01:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Louis. He thinks he's flying. 13/10 this is a legendary pup https://t.co/6d9WziPXmx NaN NaN NaN https://twitter.com/dog_rates/status/674468880899788800/photo/1,https://twitter.com/dog_rates/status/674468880899788800/photo/1 13 10 Louis None None None None
1907 674447403907457024 NaN NaN 2015-12-09 04:36:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper https://t.co/AyJ7Ohk71f NaN NaN NaN https://twitter.com/dog_rates/status/674447403907457024/photo/1 10 10 None None None pupper None
1908 674436901579923456 NaN NaN 2015-12-09 03:54:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Bailey. She plays with her food. Very childish. Doesn't even need a battle helmet smh. Still cute though. 9/10 https://t.co/CLEOjxhTEx NaN NaN NaN https://twitter.com/dog_rates/status/674436901579923456/photo/1 9 10 Bailey None None None None
1909 674422304705744896 NaN NaN 2015-12-09 02:56:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ava. She doesn't understand flowers. 12/10 would caress firmly https://t.co/BxTJAFSIgk NaN NaN NaN https://twitter.com/dog_rates/status/674422304705744896/photo/1 12 10 Ava None None None None
1910 674416750885273600 NaN NaN 2015-12-09 02:34:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jonah. He's a Stinted Fisher Price. Enjoys chewing on his miniature RipStik. 10/10 very upbeat fellow https://t.co/7qjXy1uUYY NaN NaN NaN https://twitter.com/dog_rates/status/674416750885273600/photo/1 10 10 Jonah None None None None
1911 674410619106390016 NaN NaN 2015-12-09 02:09:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lenny. He wants to be a sprinkler. 10/10 you got this Lenny https://t.co/CZ0YaB40Hn NaN NaN NaN https://twitter.com/dog_rates/status/674410619106390016/photo/1 10 10 Lenny None None None None
1912 674394782723014656 NaN NaN 2015-12-09 01:07:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gary. He's a hide and seek champion. Second only to Kony. 8/10 Gary has a gift https://t.co/cAlB4XCcsi NaN NaN NaN https://twitter.com/dog_rates/status/674394782723014656/photo/1 8 10 Gary None None None None
1913 674372068062928900 NaN NaN 2015-12-08 23:36:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Chesney. On the outside he stays calm &amp; collected. On the inside he's having a complete mental breakdown. 10/10 https://t.co/G4m0TFY9uc NaN NaN NaN https://twitter.com/dog_rates/status/674372068062928900/photo/1 10 10 Chesney None None None None
1914 674330906434379776 6.658147e+17 1.637468e+07 2015-12-08 20:53:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 13/10\n@ABC7 NaN NaN NaN NaN 13 10 None None None None None
1915 674318007229923329 NaN NaN 2015-12-08 20:01:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lennon. He's in quite the predicament. 8/10 hang in there pupper https://t.co/7mf8XXPAZv NaN NaN NaN https://twitter.com/dog_rates/status/674318007229923329/photo/1 8 10 Lennon None None pupper None
1916 674307341513269249 NaN NaN 2015-12-08 19:19:32 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> This is life-changing. 12/10 https://t.co/SroTpI6psB NaN NaN NaN https://vine.co/v/i7nWzrenw5h 12 10 life None None None None
1917 674291837063053312 NaN NaN 2015-12-08 18:17:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK NaN NaN NaN https://twitter.com/dog_rates/status/674291837063053312/photo/1 11 10 Kenny None None None None
1918 674271431610523648 NaN NaN 2015-12-08 16:56:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "AT DAWN, WE RIDE"\n10/10 for both dogs https://t.co/3aXX6wH6it NaN NaN NaN https://twitter.com/dog_rates/status/674271431610523648/photo/1 10 10 None None None None None
1919 674269164442398721 NaN NaN 2015-12-08 16:47:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 https://t.co/vYe9RlVz2N NaN NaN NaN https://twitter.com/dog_rates/status/674269164442398721/photo/1 8 10 Bob None None None None
1920 674265582246694913 NaN NaN 2015-12-08 16:33:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Henry. He's a shit dog. Short pointy ears. Leaves trail of pee. Not fluffy. Doesn't come when called. 2/10 https://t.co/Pu9RhfHDEQ NaN NaN NaN https://twitter.com/dog_rates/status/674265582246694913/photo/1 2 10 Henry None None None None
1921 674262580978937856 NaN NaN 2015-12-08 16:21:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper https://t.co/gJS1qU0jP7 NaN NaN NaN https://twitter.com/dog_rates/status/674262580978937856/photo/1 9 10 Gus None None pupper None
1922 674255168825880576 NaN NaN 2015-12-08 15:52:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Bobbay. He's a marshmallow wizard. 10/10 https://t.co/r6LZN1o1Gx NaN NaN NaN https://twitter.com/dog_rates/status/674255168825880576/photo/1 10 10 Bobbay None None None None
1923 674082852460433408 NaN NaN 2015-12-08 04:27:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU NaN NaN NaN https://twitter.com/dog_rates/status/674082852460433408/photo/1 11 10 a None None None None
1924 674075285688614912 NaN NaN 2015-12-08 03:57:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Mitch. He thinks that's a hat. Nobody has told him yet. 11/10 please no one tell him https://t.co/7jOPktauh4 NaN NaN NaN https://twitter.com/dog_rates/status/674075285688614912/photo/1 11 10 Mitch None None None None
1925 674063288070742018 NaN NaN 2015-12-08 03:09:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Earl. Earl is lost. Someone help Earl. He has no tags. Just trying to get home. 5/10 hang in there Earl https://t.co/1ZbfqAVDg6 NaN NaN NaN https://twitter.com/dog_rates/status/674063288070742018/photo/1 5 10 Earl None None None None
1926 674053186244734976 NaN NaN 2015-12-08 02:29:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Stanley. Yes he is aware of the spoon's presence, he just doesn't know what he should do about it. 10/10 https://t.co/gQAMg5ypW5 NaN NaN NaN https://twitter.com/dog_rates/status/674053186244734976/photo/1 10 10 Stanley None None None None
1927 674051556661161984 NaN NaN 2015-12-08 02:23:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lucy. She knits. Specializes in toboggans. 10/10 I'd buy a toboggan from Lucy https://t.co/YE2XDHy4Yk NaN NaN NaN https://twitter.com/dog_rates/status/674051556661161984/photo/1 10 10 Lucy None None None None
1928 674045139690631169 NaN NaN 2015-12-08 01:57:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers https://t.co/t5ih0VrK02 NaN NaN NaN https://twitter.com/dog_rates/status/674045139690631169/photo/1 3 10 None None None None None
1929 674042553264685056 NaN NaN 2015-12-08 01:47:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all https://t.co/sAI6gCGZYX NaN NaN NaN https://twitter.com/dog_rates/status/674042553264685056/photo/1 12 10 None None None None None
1930 674038233588723717 NaN NaN 2015-12-08 01:30:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kaiya. She's an aspiring shoe model. 12/10 follow your dreams pupper https://t.co/nX8FiGRHvk NaN NaN NaN https://twitter.com/dog_rates/status/674038233588723717/photo/1 12 10 Kaiya None None pupper None
1931 674036086168010753 NaN NaN 2015-12-08 01:21:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Daisy. She has no eyes &amp; her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 https://t.co/jcNdw43BIP NaN NaN NaN https://twitter.com/dog_rates/status/674036086168010753/photo/1 9 10 Daisy None None None None
1932 674024893172875264 NaN NaN 2015-12-08 00:37:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 https://t.co/qzYXbyv0SJ NaN NaN NaN https://twitter.com/dog_rates/status/674024893172875264/photo/1 10 10 None None None None None
1933 674019345211760640 NaN NaN 2015-12-08 00:15:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Acro. You briefly see her out of the corner of your eye. You look and she's not there. 10/10 mysterious pup https://t.co/fqiEsTduEs NaN NaN NaN https://twitter.com/dog_rates/status/674019345211760640/photo/1 10 10 Acro None None None None
1934 674014384960745472 NaN NaN 2015-12-07 23:55:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Aiden. His eyes are magical. Loves his little Guy Fieri friend. Sneaky tongue slip. 11/10 would caress https://t.co/Ac37LOe3xD NaN NaN NaN https://twitter.com/dog_rates/status/674014384960745472/photo/1 11 10 Aiden None None None None
1935 674008982932058114 NaN NaN 2015-12-07 23:33:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pup is sad bc he didn't get to be the toy car. Also he has shitty money management skills. 10/10 still cute tho https://t.co/PiSXXZjDSJ NaN NaN NaN https://twitter.com/dog_rates/status/674008982932058114/photo/1 10 10 None None None None None
1936 673956914389192708 NaN NaN 2015-12-07 20:07:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd NaN NaN NaN https://twitter.com/dog_rates/status/673956914389192708/photo/1 10 10 one None None pupper None
1937 673919437611909120 NaN NaN 2015-12-07 17:38:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Obie. He is on guard watching for evildoers from the comfort of his pumpkin. Very brave pupper. 11/10 https://t.co/cdwPTsGEAb NaN NaN NaN https://twitter.com/dog_rates/status/673919437611909120/photo/1 11 10 Obie None None pupper None
1938 673906403526995968 NaN NaN 2015-12-07 16:46:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 https://t.co/t5rQHl6W8M NaN NaN NaN https://twitter.com/dog_rates/status/673906403526995968/photo/1 3 10 None None None None None
1939 673887867907739649 NaN NaN 2015-12-07 15:32:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 https://t.co/6qYd6BNSPd NaN NaN NaN https://twitter.com/dog_rates/status/673887867907739649/photo/1,https://twitter.com/dog_rates/status/673887867907739649/photo/1 10 10 None None None None None
1940 673716320723169284 6.737159e+17 4.196984e+09 2015-12-07 04:11:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> The millennials have spoken and we've decided to immediately demote to a 1/10. Thank you NaN NaN NaN NaN 1 10 None None None None None
1941 673715861853720576 NaN NaN 2015-12-07 04:09:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 https://t.co/dFiaKZ9cDl NaN NaN NaN https://twitter.com/dog_rates/status/673715861853720576/photo/1 4 10 a None None None None
1942 673711475735838725 NaN NaN 2015-12-07 03:51:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 https://t.co/MTOOksRzvH NaN NaN NaN https://twitter.com/dog_rates/status/673711475735838725/photo/1 10 10 None None None None None
1943 673709992831262724 NaN NaN 2015-12-07 03:45:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 https://t.co/s2ktuPQd79 NaN NaN NaN https://twitter.com/dog_rates/status/673709992831262724/photo/1 12 10 None None None None None
1944 673708611235921920 NaN NaN 2015-12-07 03:40:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Riley. She's just an adorable football fan. 12/10 I'd watch the sports with her https://t.co/kLV8zUCfc8 NaN NaN NaN https://twitter.com/dog_rates/status/673708611235921920/photo/1 12 10 Riley None None None None
1945 673707060090052608 NaN NaN 2015-12-07 03:34:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Raymond. He's absolutely terrified of floating tennis ball. 10/10 it'll be ok pupper https://t.co/QyH1CaY3SM NaN NaN NaN https://twitter.com/dog_rates/status/673707060090052608/photo/1,https://twitter.com/dog_rates/status/673707060090052608/photo/1 10 10 Raymond None None pupper None
1946 673705679337693185 NaN NaN 2015-12-07 03:28:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 https://t.co/Ymg4fwKlZd NaN NaN NaN https://twitter.com/dog_rates/status/673705679337693185/photo/1 8 10 Dot None None None None
1947 673700254269775872 NaN NaN 2015-12-07 03:07:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup https://t.co/mcPd5AFfhA NaN NaN NaN https://twitter.com/dog_rates/status/673700254269775872/photo/1 3 10 None None None None None
1948 673697980713705472 NaN NaN 2015-12-07 02:58:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pickles. She's a tiny pointy pupper. Average walker. Very skeptical of wet leaf. 8/10 https://t.co/lepRCaGcgw NaN NaN NaN https://twitter.com/dog_rates/status/673697980713705472/photo/1,https://twitter.com/dog_rates/status/673697980713705472/photo/1 8 10 Pickles None None pupper None
1949 673689733134946305 NaN NaN 2015-12-07 02:25:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you're having a blast and remember tomorrow's Monday. 11/10 https://t.co/YPsJasNVGe NaN NaN NaN https://twitter.com/dog_rates/status/673689733134946305/photo/1,https://twitter.com/dog_rates/status/673689733134946305/photo/1 11 10 None None None None None
1950 673688752737402881 NaN NaN 2015-12-07 02:21:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry https://t.co/jMki5GOV3y NaN NaN NaN https://twitter.com/dog_rates/status/673688752737402881/photo/1 9 10 Larry None None None None
1951 673686845050527744 NaN NaN 2015-12-07 02:13:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is George. He's upset that the 4th of July isn't everyday. 11/10 https://t.co/wImU0jdx3E NaN NaN NaN https://twitter.com/dog_rates/status/673686845050527744/photo/1 11 10 George None None None None
1952 673680198160809984 NaN NaN 2015-12-07 01:47:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shnuggles. I would kill for Shnuggles. 13/10 https://t.co/GwvpQiQ7oQ NaN NaN NaN https://twitter.com/dog_rates/status/673680198160809984/photo/1 13 10 Shnuggles None None None None
1953 673662677122719744 NaN NaN 2015-12-07 00:37:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kendall. 12/10 would cuddle the hell out of https://t.co/fJulMurnfj NaN NaN NaN https://twitter.com/dog_rates/status/673662677122719744/photo/1 12 10 Kendall None None None None
1954 673656262056419329 NaN NaN 2015-12-07 00:12:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Albert AKA King Banana Peel. He's a kind ruler of the kitchen. Very jubilant pupper. 10/10 overall great dog https://t.co/PN8hxgZ9We NaN NaN NaN https://twitter.com/dog_rates/status/673656262056419329/photo/1 10 10 Albert None None pupper None
1955 673636718965334016 NaN NaN 2015-12-06 22:54:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Lofted Aphrodisiac Terrier named Kip. Big fan of bed n breakfasts. Fits perfectly. 10/10 would pet firmly https://t.co/gKlLpNzIl3 NaN NaN NaN https://twitter.com/dog_rates/status/673636718965334016/photo/1 10 10 a None None None None
1956 673612854080196609 NaN NaN 2015-12-06 21:19:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 https://t.co/0iyItbtkr8 NaN NaN NaN https://twitter.com/dog_rates/status/673612854080196609/photo/1 7 10 Jeffri None None pupper None
1957 673583129559498752 NaN NaN 2015-12-06 19:21:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sandy. She loves her spot by the tree. Contemplating her true purpose in the universe. Wears socks. 11/10 https://t.co/JpoEvgbDug NaN NaN NaN https://twitter.com/dog_rates/status/673583129559498752/photo/1 11 10 Sandy None None None None
1958 673580926094458881 NaN NaN 2015-12-06 19:13:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you ask your professor about extra credit on the last day of class. 8/10 https://t.co/H6rqZyE4NP NaN NaN NaN https://twitter.com/dog_rates/status/673580926094458881/photo/1 8 10 None None None None None
1959 673576835670777856 NaN NaN 2015-12-06 18:56:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely https://t.co/WlKiN3ll0w NaN NaN NaN https://twitter.com/dog_rates/status/673576835670777856/photo/1 7 10 None None None None None
1960 673363615379013632 NaN NaN 2015-12-06 04:49:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This little pupper can't wait for Christmas. He's pretending to be a present. S'cute. 11/10 twenty more days 🎁🎄🐶 https://t.co/m8r9rbcgX4 NaN NaN NaN https://twitter.com/dog_rates/status/673363615379013632/photo/1 11 10 None None None pupper None
1961 673359818736984064 NaN NaN 2015-12-06 04:34:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup https://t.co/EPq0MRAraJ NaN NaN NaN https://twitter.com/dog_rates/status/673359818736984064/photo/1 8 10 Steve None None None None
1962 673355879178194945 NaN NaN 2015-12-06 04:18:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Koda. She's a boss. Helps shift gears. Can even drive herself. Still no seat belt (reckless af). 11/10 https://t.co/0zUxlrhZrQ NaN NaN NaN https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1 11 10 Koda None None None None
1963 673352124999274496 NaN NaN 2015-12-06 04:03:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 https://t.co/az5PLGzVNJ NaN NaN NaN https://twitter.com/dog_rates/status/673352124999274496/photo/1 12 10 None None None None None
1964 673350198937153538 NaN NaN 2015-12-06 03:56:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it https://t.co/RMv9EAv57u NaN NaN NaN https://twitter.com/dog_rates/status/673350198937153538/photo/1 9 10 Bella None None None None
1965 673345638550134785 NaN NaN 2015-12-06 03:38:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gerald. He's a fluffy lil yellow pup. Always looks like his favorite team just lost on a hail mary. 7/10 https://t.co/GpSkpN8kXS NaN NaN NaN https://twitter.com/dog_rates/status/673345638550134785/photo/1 7 10 Gerald None None None None
1966 673343217010679808 NaN NaN 2015-12-06 03:28:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNUbKOSiWW NaN NaN NaN https://twitter.com/dog_rates/status/673343217010679808/photo/1 11 10 None None None None None
1967 673342308415348736 NaN NaN 2015-12-06 03:24:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Django. He's a skilled assassin pupper. 10/10 https://t.co/w0YTuiRd1a NaN NaN NaN https://twitter.com/dog_rates/status/673342308415348736/photo/1 10 10 Django None None pupper None
1968 673320132811366400 NaN NaN 2015-12-06 01:56:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf NaN NaN NaN https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1 11 10 Frankie None None None None
1969 673317986296586240 NaN NaN 2015-12-06 01:48:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both https://t.co/juX48bWpng NaN NaN NaN https://twitter.com/dog_rates/status/673317986296586240/photo/1,https://twitter.com/dog_rates/status/673317986296586240/photo/1 10 10 None None None None None
1970 673295268553605120 NaN NaN 2015-12-06 00:17:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https://t.co/U36HYQIijg NaN NaN NaN https://twitter.com/dog_rates/status/673295268553605120/photo/1 8 10 Eve None None pupper None
1971 673270968295534593 NaN NaN 2015-12-05 22:41:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mac. His dad's probably a lawyer. 11/10 https://t.co/mjC0QpXGum NaN NaN NaN https://twitter.com/dog_rates/status/673270968295534593/photo/1 11 10 Mac None None None None
1972 673240798075449344 NaN NaN 2015-12-05 20:41:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 NaN NaN NaN https://twitter.com/dog_rates/status/673240798075449344/photo/1 6 10 None None None None None
1973 673213039743795200 NaN NaN 2015-12-05 18:51:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Dexter. He just got some big news. 10/10 https://t.co/CbvCUE6PFI NaN NaN NaN https://twitter.com/dog_rates/status/673213039743795200/photo/1 10 10 Dexter None None None None
1974 673148804208660480 NaN NaN 2015-12-05 14:35:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Fletcher. He's had a ruff night. No more Fireball for Fletcher. 8/10 it'll be over soon pupper https://t.co/tA4WpkI2cw NaN NaN NaN https://twitter.com/dog_rates/status/673148804208660480/photo/1 8 10 Fletcher None None pupper None
1975 672997845381865473 NaN NaN 2015-12-05 04:36:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Kenzie. She is a fluff ball. 12/10 you'd need to taser me for me to let go of her https://t.co/dph1UHNJrg NaN NaN NaN https://twitter.com/dog_rates/status/672997845381865473/photo/1 12 10 Kenzie None None None None
1976 672995267319328768 NaN NaN 2015-12-05 04:25:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 https://t.co/odpuqtz2Fq NaN NaN NaN https://twitter.com/dog_rates/status/672995267319328768/photo/1 8 10 Pumpkin None None None None
1977 672988786805112832 NaN NaN 2015-12-05 04:00:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Schnozz. He's had a blurred tail since birth. Hasn't let that stop him. 10/10 inspirational pupper https://t.co/a3zYMcvbXG NaN NaN NaN https://twitter.com/dog_rates/status/672988786805112832/photo/1 10 10 Schnozz None None pupper None
1978 672984142909456390 NaN NaN 2015-12-05 03:41:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 https://t.co/81BCQAyvcs NaN NaN NaN https://twitter.com/dog_rates/status/672984142909456390/photo/1 9 10 None None None None None
1979 672980819271634944 NaN NaN 2015-12-05 03:28:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet https://t.co/ufHWUFA9Pu NaN NaN NaN https://twitter.com/dog_rates/status/672980819271634944/photo/1 5 10 None None None None None
1980 672975131468300288 NaN NaN 2015-12-05 03:05:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chuckles. He is one skeptical pupper. 10/10 stay woke Chuckles https://t.co/ZlcF0TIRW1 NaN NaN NaN https://twitter.com/dog_rates/status/672975131468300288/photo/1 10 10 Chuckles None None pupper None
1981 672970152493887488 NaN NaN 2015-12-05 02:46:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chet. He's having a hard time. Really struggling. 7/10 hang in there pupper https://t.co/eb4ta0xtnd NaN NaN NaN https://twitter.com/dog_rates/status/672970152493887488/photo/1 7 10 Chet None None pupper None
1982 672968025906282496 NaN NaN 2015-12-05 02:37:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gustaf. He's a purebred Chevy Equinox. Loves to shred. Gnarly lil pup. Great with the babes. 11/10 https://t.co/7CbO2eMAgJ NaN NaN NaN https://twitter.com/dog_rates/status/672968025906282496/photo/1 11 10 Gustaf None None None None
1983 672964561327235073 NaN NaN 2015-12-05 02:23:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Terry. He's a Toasty Western Sriracha. Doubles as a table. Great for parties. 10/10 would highly recommend https://t.co/1ui7a1ZLTT NaN NaN NaN https://twitter.com/dog_rates/status/672964561327235073/photo/1 10 10 Terry None None None None
1984 672902681409806336 NaN NaN 2015-12-04 22:17:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jimison. He's stuck in a pot. Damn it Jimison. 9/10 https://t.co/KpLyca3o3E NaN NaN NaN https://twitter.com/dog_rates/status/672902681409806336/photo/1 9 10 Jimison None None None None
1985 672898206762672129 NaN NaN 2015-12-04 22:00:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cheryl AKA Queen Pupper of the Skies. Experienced fighter pilot. Much skill. True hero. 11/10 https://t.co/i4XJEWwdsp NaN NaN NaN https://twitter.com/dog_rates/status/672898206762672129/photo/1 11 10 Cheryl None None pupper None
1986 672884426393653248 NaN NaN 2015-12-04 21:05:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup https://t.co/g5YkRqP0dg NaN NaN NaN https://twitter.com/dog_rates/status/672884426393653248/photo/1 6 10 None None None None None
1987 672877615439593473 NaN NaN 2015-12-04 20:38:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar https://t.co/dJHI7uC2y3 NaN NaN NaN https://twitter.com/dog_rates/status/672877615439593473/photo/1 8 10 Oscar None None None None
1988 672834301050937345 NaN NaN 2015-12-04 17:46:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ed. He's not mad, just disappointed. 10/10 https://t.co/BIljU0zhLN NaN NaN NaN https://twitter.com/dog_rates/status/672834301050937345/photo/1 10 10 Ed None None None None
1989 672828477930868736 NaN NaN 2015-12-04 17:23:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jerry. He's a Timbuk Slytherin. Eats his pizza from the side first. Crushed that cup with his bare paws 9/10 https://t.co/fvxHL6cRRs NaN NaN NaN https://twitter.com/dog_rates/status/672828477930868736/photo/1 9 10 Jerry None None None None
1990 672640509974827008 NaN NaN 2015-12-04 04:56:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Leonidas. He just got rekt by a snowball. 9/10 doggy down https://t.co/uNrmYDUa9M NaN NaN NaN https://twitter.com/dog_rates/status/672640509974827008/photo/1 9 10 Leonidas None None None None
1991 672622327801233409 NaN NaN 2015-12-04 03:43:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly https://t.co/Cv7dRdcMvQ NaN NaN NaN https://twitter.com/dog_rates/status/672622327801233409/photo/1 12 10 None None None pupper None
1992 672614745925664768 NaN NaN 2015-12-04 03:13:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Norman. Doesn't bark much. Very docile pup. Up to date on current events. Overall nifty pupper. 6/10 https://t.co/ntxsR98f3U NaN NaN NaN https://twitter.com/dog_rates/status/672614745925664768/photo/1 6 10 Norman None None pupper None
1993 672609152938721280 NaN NaN 2015-12-04 02:51:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl https://t.co/YAVwvNaois NaN NaN NaN https://twitter.com/dog_rates/status/672609152938721280/photo/1 9 10 Caryl None None None None
1994 672604026190569472 NaN NaN 2015-12-04 02:31:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe NaN NaN NaN https://twitter.com/dog_rates/status/672604026190569472/photo/1 11 10 a None None None None
1995 672594978741354496 NaN NaN 2015-12-04 01:55:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper https://t.co/jyXbZ35MYz NaN NaN NaN https://twitter.com/dog_rates/status/672594978741354496/photo/1 9 10 Scott None None pupper None
1996 672591762242805761 NaN NaN 2015-12-04 01:42:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Taz. He boxes leaves. 10/10 https://t.co/bWQ0iIcP0w NaN NaN NaN https://twitter.com/dog_rates/status/672591762242805761/photo/1 10 10 Taz None None None None
1997 672591271085670400 NaN NaN 2015-12-04 01:40:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all https://t.co/Pa8EmpDCuI NaN NaN NaN https://twitter.com/dog_rates/status/672591271085670400/photo/1 8 10 None None None None None
1998 672538107540070400 NaN NaN 2015-12-03 22:09:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Darby. He's a Fiscal Tutankhamen Waxbeard. Really likes steak. 7/10 https://t.co/rSndxTL0Ap NaN NaN NaN https://twitter.com/dog_rates/status/672538107540070400/photo/1 7 10 Darby None None None None
1999 672523490734551040 NaN NaN 2015-12-03 21:11:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 https://t.co/EH0N3dFKUi NaN NaN NaN https://twitter.com/dog_rates/status/672523490734551040/photo/1 10 10 None None None None None
2000 672488522314567680 NaN NaN 2015-12-03 18:52:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jackie. She was all ready to go out, but her friends just cancelled on her. 10/10 hang in there Jackie https://t.co/rVfi6CCidK NaN NaN NaN https://twitter.com/dog_rates/status/672488522314567680/photo/1 10 10 Jackie None None None None
2001 672482722825261057 NaN NaN 2015-12-03 18:29:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt NaN NaN NaN https://twitter.com/dog_rates/status/672482722825261057/photo/1 10 10 light None None None None
2002 672481316919734272 NaN NaN 2015-12-03 18:23:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Jazz. She should be on the cover of Vogue. 12/10 gorgeous pupper https://t.co/mVCMemhXAP NaN NaN NaN https://twitter.com/dog_rates/status/672481316919734272/photo/1 12 10 Jazz None None pupper None
2003 672475084225949696 NaN NaN 2015-12-03 17:58:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well https://t.co/mYhQvAdV4f NaN NaN NaN https://twitter.com/dog_rates/status/672475084225949696/photo/1 8 10 Buddy None None None None
2004 672466075045466113 NaN NaN 2015-12-03 17:23:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Franq and Pablo. They're working hard getting ready for Christmas. 12/10 for both. Amazing pups https://t.co/8lKFBOQ2J5 NaN NaN NaN https://twitter.com/dog_rates/status/672466075045466113/photo/1 12 10 Franq None None None None
2005 672272411274932228 NaN NaN 2015-12-03 04:33:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pippin. He is terrified of his new little yellow giraffe. 11/10 https://t.co/ZICNl6tIr5 NaN NaN NaN https://twitter.com/dog_rates/status/672272411274932228/photo/1,https://twitter.com/dog_rates/status/672272411274932228/photo/1 11 10 Pippin None None None None
2006 672267570918129665 NaN NaN 2015-12-03 04:14:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you accidentally open up the front facing camera. 10/10 https://t.co/jDXxZARQIZ NaN NaN NaN https://twitter.com/dog_rates/status/672267570918129665/photo/1 10 10 None None None None None
2007 672264251789176834 NaN NaN 2015-12-03 04:01:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kreg. He has the eyes of a tyrannical dictator. Will not rest until household is his. 10/10 https://t.co/TUeuaOmunV NaN NaN NaN https://twitter.com/dog_rates/status/672264251789176834/photo/1 10 10 Kreg None None None None
2008 672256522047614977 NaN NaN 2015-12-03 03:30:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all https://t.co/PoMKKnKpRd NaN NaN NaN https://twitter.com/dog_rates/status/672256522047614977/photo/1 8 10 None None None None None
2009 672254177670729728 NaN NaN 2015-12-03 03:21:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Rolf. He's having the time of his life. 11/10 good pupper https://t.co/OO6MqEbqG3 NaN NaN NaN https://twitter.com/dog_rates/status/672254177670729728/photo/1 11 10 Rolf None None pupper None
2010 672248013293752320 NaN NaN 2015-12-03 02:56:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all https://t.co/uhx5gfpx5k NaN NaN NaN https://twitter.com/dog_rates/status/672248013293752320/photo/1 10 10 None None None None None
2011 672245253877968896 NaN NaN 2015-12-03 02:45:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr NaN NaN NaN https://twitter.com/dog_rates/status/672245253877968896/photo/1 12 10 Snickers None None None None
2012 672239279297454080 NaN NaN 2015-12-03 02:21:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ridley. He doesn't know how to couch. 7/10 https://t.co/UHJE0UgMf7 NaN NaN NaN https://twitter.com/dog_rates/status/672239279297454080/photo/1 7 10 Ridley None None None None
2013 672231046314901505 NaN NaN 2015-12-03 01:49:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft https://t.co/WH7Nzc5IBA NaN NaN NaN https://twitter.com/dog_rates/status/672231046314901505/photo/1 5 10 None None None None None
2014 672222792075620352 NaN NaN 2015-12-03 01:16:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 https://t.co/EW4MsOrF5O NaN NaN NaN https://twitter.com/dog_rates/status/672222792075620352/photo/1 9 10 Cal None None None None
2015 672205392827572224 NaN NaN 2015-12-03 00:07:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Opal. He's a Royal John Coctostan. Ready for transport. Basically indestructible. 9/10 good pupper https://t.co/yRBQF9OS7D NaN NaN NaN https://twitter.com/dog_rates/status/672205392827572224/photo/1 9 10 Opal None None pupper None
2016 672169685991993344 NaN NaN 2015-12-02 21:45:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bradley. That is his sandwich. He carries it everywhere. 10/10 https://t.co/AjBkGTyCeO NaN NaN NaN https://twitter.com/dog_rates/status/672169685991993344/photo/1 10 10 Bradley None None None None
2017 672160042234327040 NaN NaN 2015-12-02 21:06:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper https://t.co/aNkkl5nH3W NaN NaN NaN https://twitter.com/dog_rates/status/672160042234327040/photo/1 8 10 Bubba None None pupper None
2018 672139350159835138 NaN NaN 2015-12-02 19:44:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pup has a heart on its ass and that is downright legendary. 12/10 https://t.co/0OI927mmNJ NaN NaN NaN https://twitter.com/dog_rates/status/672139350159835138/photo/1 12 10 None None None None None
2019 672125275208069120 NaN NaN 2015-12-02 18:48:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is just impressive I have nothing else to say. 11/10 https://t.co/LquQZiZjJP NaN NaN NaN https://twitter.com/dog_rates/status/672125275208069120/photo/1 11 10 just None None None None
2020 672095186491711488 NaN NaN 2015-12-02 16:49:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tuco. That's the toast that killed his father. 9/10 https://t.co/ujnWy26RMe NaN NaN NaN https://twitter.com/dog_rates/status/672095186491711488/photo/1 9 10 Tuco None None None None
2021 672082170312290304 NaN NaN 2015-12-02 15:57:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Patch. He wants to be a Christmas tree. 11/10 https://t.co/WTJtf9O8Jg NaN NaN NaN https://twitter.com/dog_rates/status/672082170312290304/photo/1 11 10 Patch None None None None
2022 672068090318987265 NaN NaN 2015-12-02 15:01:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 https://t.co/XkMtCGhr4a NaN NaN NaN https://twitter.com/dog_rates/status/672068090318987265/photo/1 7 10 Gizmo None None None None
2023 671896809300709376 NaN NaN 2015-12-02 03:40:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH NaN NaN NaN https://twitter.com/dog_rates/status/671896809300709376/photo/1 10 10 Lola None None None None
2024 671891728106971137 NaN NaN 2015-12-02 03:20:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mojo. Apparently he's too cute for a seat belt. Hella careless. I'd still pet him tho. 11/10 buckle up pup https://t.co/dzZYx2NByW NaN NaN NaN https://twitter.com/dog_rates/status/671891728106971137/photo/1 11 10 Mojo None None None None
2025 671882082306625538 NaN NaN 2015-12-02 02:42:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Batdog. He's sleeping now but when he wakes up he'll fight crime and such. Great tongue. 11/10 for Batdog https://t.co/Clg16EVy9O NaN NaN NaN https://twitter.com/dog_rates/status/671882082306625538/photo/1 11 10 Batdog None None None None
2026 671879137494245376 NaN NaN 2015-12-02 02:30:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Brad. He's a chubby lil pup. Doesn't really need the food he's trying to reach. 5/10 you've had enough Brad https://t.co/vPXKSaNsbE NaN NaN NaN https://twitter.com/dog_rates/status/671879137494245376/photo/1 5 10 Brad None None None None
2027 671874878652489728 NaN NaN 2015-12-02 02:13:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Mia. She was specifically told not get on top of the hutch or play in the fridge. 10/10 what a rebel https://t.co/3J7wkwW4FG NaN NaN NaN https://twitter.com/dog_rates/status/671874878652489728/photo/1,https://twitter.com/dog_rates/status/671874878652489728/photo/1 10 10 Mia None None None None
2028 671866342182637568 NaN NaN 2015-12-02 01:39:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Dylan. He can use a fork but clearly can't put on a sweatshirt correctly. Looks like a disgruntled teen. 10/10 https://t.co/FWJQ1zQLiI NaN NaN NaN https://twitter.com/dog_rates/status/671866342182637568/photo/1 10 10 Dylan None None None None
2029 671855973984772097 NaN NaN 2015-12-02 00:58:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with https://t.co/gpWLdbposg NaN NaN NaN https://twitter.com/dog_rates/status/671855973984772097/photo/1 8 10 None None None None None
2030 671789708968640512 NaN NaN 2015-12-01 20:35:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq NaN NaN NaN https://twitter.com/dog_rates/status/671789708968640512/photo/1 13 10 space None None None None
2031 671768281401958400 NaN NaN 2015-12-01 19:10:13 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> When you try to recreate the scene from Lady &amp; The Tramp but then remember you don't have a significant other. 10/10 https://t.co/TASnD8Q08S NaN NaN NaN https://twitter.com/dog_rates/status/671768281401958400/photo/1,https://twitter.com/dog_rates/status/671768281401958400/photo/1 10 10 None None None None None
2032 671763349865160704 NaN NaN 2015-12-01 18:50:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Mark. He's a good dog. Always ready to go for a walk. Excellent posture. 9/10 keep it up Mark https://t.co/m9NleZ1i80 NaN NaN NaN https://twitter.com/dog_rates/status/671763349865160704/photo/1 9 10 Mark None None None None
2033 671744970634719232 NaN NaN 2015-12-01 17:37:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle https://t.co/wwwYO9C9kl NaN NaN NaN https://twitter.com/dog_rates/status/671744970634719232/photo/1 6 10 None None None None None
2034 671743150407421952 NaN NaN 2015-12-01 17:30:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 NaN NaN NaN https://twitter.com/dog_rates/status/671743150407421952/photo/1 11 10 a None None None None
2035 671735591348891648 NaN NaN 2015-12-01 17:00:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oscar. He's ready for Christmas. 11/10 https://t.co/TON0Irzgwr NaN NaN NaN https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1 11 10 Oscar None None None None
2036 671729906628341761 6.715610e+17 4.196984e+09 2015-12-01 16:37:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt NaN NaN NaN https://twitter.com/dog_rates/status/671729906628341761/photo/1 13 10 None None None None None
2037 671561002136281088 NaN NaN 2015-12-01 05:26:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is the best thing I've ever seen so spread it like wildfire &amp; maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU NaN NaN NaN https://twitter.com/dog_rates/status/671561002136281088/photo/1 13 10 the None None None None
2038 671550332464455680 6.715449e+17 4.196984e+09 2015-12-01 04:44:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After 22 minutes of careful deliberation this dog is being demoted to a 1/10. The longer you look at him the more terrifying he becomes NaN NaN NaN NaN 1 10 None None None None None
2039 671547767500775424 NaN NaN 2015-12-01 04:33:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Marley. She chews shoes then feels extremely guilty about it and refuses to look at them. 10/10 https://t.co/f99MV0htAV NaN NaN NaN https://twitter.com/dog_rates/status/671547767500775424/photo/1,https://twitter.com/dog_rates/status/671547767500775424/photo/1 10 10 Marley None None None None
2040 671544874165002241 NaN NaN 2015-12-01 04:22:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 https://t.co/QVaEMsB9tS NaN NaN NaN https://twitter.com/dog_rates/status/671544874165002241/photo/1 6 10 None None None None None
2041 671542985629241344 NaN NaN 2015-12-01 04:14:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF NaN NaN NaN https://twitter.com/dog_rates/status/671542985629241344/photo/1 10 10 JD None None None None
2042 671538301157904385 NaN NaN 2015-12-01 03:56:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Baxter. He's very calm. Hasn't eaten in weeks tho. Not good at fetch. Never blinks. 8/10 would still pet https://t.co/fUuiyu2QTD NaN NaN NaN https://twitter.com/dog_rates/status/671538301157904385/photo/1 8 10 Baxter None None None None
2043 671536543010570240 NaN NaN 2015-12-01 03:49:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy https://t.co/1U5Ro5FA4c NaN NaN NaN https://twitter.com/dog_rates/status/671536543010570240/photo/1 9 10 Reginald None None None None
2044 671533943490011136 NaN NaN 2015-12-01 03:39:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup https://t.co/pcx8jm1J1K NaN NaN NaN https://twitter.com/dog_rates/status/671533943490011136/photo/1 6 10 None None None None None
2045 671528761649688577 NaN NaN 2015-12-01 03:18:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jax. He's in the middle of a serious conversation and is trying unbelievably hard not to laugh. 10/10 https://t.co/HwiLcDPaCi NaN NaN NaN https://twitter.com/dog_rates/status/671528761649688577/photo/1 10 10 Jax None None None None
2046 671520732782923777 NaN NaN 2015-12-01 02:46:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Alejandro. He's an extremely seductive pup. 10/10 https://t.co/C7dPcCUNpF NaN NaN NaN https://twitter.com/dog_rates/status/671520732782923777/photo/1 10 10 Alejandro None None None None
2047 671518598289059840 NaN NaN 2015-12-01 02:38:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers https://t.co/nLQoltwEZ7 NaN NaN NaN https://twitter.com/dog_rates/status/671518598289059840/photo/1 9 10 Scruffers None None None None
2048 671511350426865664 NaN NaN 2015-12-01 02:09:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Hammond. He's just a wee lil pup. Jumps around a shit ton. 8/10 overall very good dog https://t.co/OgDF2ES3Q9 NaN NaN NaN https://twitter.com/dog_rates/status/671511350426865664/photo/1 8 10 Hammond None None None None
2049 671504605491109889 NaN NaN 2015-12-01 01:42:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Charlie. He was just informed that dogs can't be Jedi. 11/10 https://t.co/mGW5c50mPA NaN NaN NaN https://twitter.com/dog_rates/status/671504605491109889/photo/1,https://twitter.com/dog_rates/status/671504605491109889/photo/1 11 10 Charlie None None None None
2050 671497587707535361 NaN NaN 2015-12-01 01:14:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pip. He is a ship captain. Many years of experience sailing the treacherous open sea. 11/10 https://t.co/EY1uZJUGYJ NaN NaN NaN https://twitter.com/dog_rates/status/671497587707535361/photo/1 11 10 Pip None None None None
2051 671488513339211776 NaN NaN 2015-12-01 00:38:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Julius. He's a cool dog. Carries seashell everywhere. Rad segmented legs. Currently attacking castle. 8/10 https://t.co/CwUK5AIgeD NaN NaN NaN https://twitter.com/dog_rates/status/671488513339211776/photo/1 8 10 Julius None None None None
2052 671486386088865792 NaN NaN 2015-12-01 00:30:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Malcolm. He just saw a spider. 10/10 https://t.co/ympkwF65Dx NaN NaN NaN https://twitter.com/dog_rates/status/671486386088865792/photo/1 10 10 Malcolm None None None None
2053 671485057807351808 NaN NaN 2015-12-01 00:24:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Penelope. She is a white Macadamias Duodenum. Very excited about wall. Lives on Frosted Flakes. 11/10 good pup https://t.co/CqcRagJlyS NaN NaN NaN https://twitter.com/dog_rates/status/671485057807351808/photo/1 11 10 Penelope None None None None
2054 671390180817915904 NaN NaN 2015-11-30 18:07:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet https://t.co/U1mSS3Ykez NaN NaN NaN https://twitter.com/dog_rates/status/671390180817915904/photo/1 7 10 None None None None None
2055 671362598324076544 NaN NaN 2015-11-30 16:18:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tanner. He accidentally dropped all his hard-earned Kohl's cash in the tub. 11/10 https://t.co/onC3uMpFF2 NaN NaN NaN https://twitter.com/dog_rates/status/671362598324076544/photo/1 11 10 Tanner None None None None
2056 671357843010908160 NaN NaN 2015-11-30 15:59:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Tfw she says hello from the other side. 9/10 https://t.co/lS1TIDagIb NaN NaN NaN https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1 9 10 None None None None None
2057 671355857343524864 NaN NaN 2015-11-30 15:51:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lou. He's a Petrarch Sunni Pinto. Well-behaved pup. Little legs just hang there. 10/10 would pet firmly https://t.co/FoCULrC3rD NaN NaN NaN https://twitter.com/dog_rates/status/671355857343524864/photo/1 10 10 Lou None None None None
2058 671347597085433856 NaN NaN 2015-11-30 15:18:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lola. She was not fully prepared for the water slide. 9/10 https://t.co/svlkUlg3NH NaN NaN NaN https://twitter.com/dog_rates/status/671347597085433856/photo/1,https://twitter.com/dog_rates/status/671347597085433856/photo/1 9 10 Lola None None None None
2059 671186162933985280 NaN NaN 2015-11-30 04:37:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sparky. That's his pancake now. He will raise it as his own. 10/10 https://t.co/96tMaWyoWt NaN NaN NaN https://twitter.com/dog_rates/status/671186162933985280/photo/1 10 10 Sparky None None None None
2060 671182547775299584 NaN NaN 2015-11-30 04:22:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This pup holds the secrets of the universe in his left eye. 12/10 https://t.co/F7xwE0wmnu NaN NaN NaN https://twitter.com/dog_rates/status/671182547775299584/photo/1 12 10 None None None None None
2061 671166507850801152 NaN NaN 2015-11-30 03:18:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Herm. It's his first day of potty training. He's doing great. You got this Herm. 10/10 stellar pup https://t.co/gFl60yFJ0w NaN NaN NaN https://twitter.com/dog_rates/status/671166507850801152/photo/1 10 10 Herm None None None None
2062 671163268581498880 NaN NaN 2015-11-30 03:06:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all https://t.co/U7DQQdZ0mX NaN NaN NaN https://twitter.com/dog_rates/status/671163268581498880/photo/1 8 10 None None None None None
2063 671159727754231808 NaN NaN 2015-11-30 02:52:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Anthony. He just finished up his masters at Harvard. Unprofessional tattoos. Always looks perturbed. 5/10 https://t.co/iHLo9rGay1 NaN NaN NaN https://twitter.com/dog_rates/status/671159727754231808/photo/1 5 10 Anthony None None None None
2064 671154572044468225 NaN NaN 2015-11-30 02:31:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Holly. She's trying to teach small human-like pup about blocks but he's not paying attention smh. 11/10 &amp; 8/10 https://t.co/RcksaUrGNu NaN NaN NaN https://twitter.com/dog_rates/status/671154572044468225/photo/1 11 10 Holly None None None None
2065 671151324042559489 NaN NaN 2015-11-30 02:18:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> *struggling to breathe properly* 12/10 https://t.co/NKHx0pcOii NaN NaN NaN https://twitter.com/dog_rates/status/671151324042559489/photo/1 12 10 None None None None None
2066 671147085991960577 NaN NaN 2015-11-30 02:01:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr NaN NaN NaN https://twitter.com/dog_rates/status/671147085991960577/photo/1 9 10 a None None None None
2067 671141549288370177 NaN NaN 2015-11-30 01:39:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable https://t.co/HYR611wiA4 NaN NaN NaN https://twitter.com/dog_rates/status/671141549288370177/photo/1 9 10 None None None None None
2068 671138694582165504 NaN NaN 2015-11-30 01:28:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Me running from commitment. 10/10 https://t.co/ycVJyFFkES NaN NaN NaN https://twitter.com/dog_rates/status/671138694582165504/photo/1 10 10 None None None None None
2069 671134062904504320 NaN NaN 2015-11-30 01:10:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY NaN NaN NaN https://twitter.com/dog_rates/status/671134062904504320/photo/1 8 10 Clarence None None None None
2070 671122204919246848 NaN NaN 2015-11-30 00:22:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s https://t.co/WzVLdSHJU7 NaN NaN NaN https://twitter.com/dog_rates/status/671122204919246848/photo/1 4 10 None None None None None
2071 671115716440031232 NaN NaN 2015-11-29 23:57:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 https://t.co/mZD7Bo7HfV NaN NaN NaN https://twitter.com/dog_rates/status/671115716440031232/photo/1 6 10 Phred None None None None
2072 671109016219725825 NaN NaN 2015-11-29 23:30:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby https://t.co/sYi2G0he4H NaN NaN NaN https://twitter.com/dog_rates/status/671109016219725825/photo/1 8 10 Toby None None None None
2073 670995969505435648 NaN NaN 2015-11-29 16:01:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Yea I can't handle this job anymore your dogs are too adorable. 12/10 https://t.co/N9W5L7BLTm NaN NaN NaN https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1 12 10 None None None None None
2074 670842764863651840 NaN NaN 2015-11-29 05:52:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY NaN NaN NaN https://twitter.com/dog_rates/status/670842764863651840/photo/1 420 10 None None None None None
2075 670840546554966016 NaN NaN 2015-11-29 05:43:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Colby. He's that one cool friend that gets you into every party. Great hat. Sneaky tongue slip. 10/10 good pup https://t.co/jBnz3MjTzX NaN NaN NaN https://twitter.com/dog_rates/status/670840546554966016/photo/1 10 10 Colby None None None None
2076 670838202509447168 NaN NaN 2015-11-29 05:34:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet https://t.co/QY5uvMmmQk NaN NaN NaN https://twitter.com/dog_rates/status/670838202509447168/photo/1 4 10 None None None None None
2077 670833812859932673 NaN NaN 2015-11-29 05:16:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jett. He is unimpressed by flower. 7/10 https://t.co/459qWNnV3F NaN NaN NaN https://twitter.com/dog_rates/status/670833812859932673/photo/1 7 10 Jett None None None None
2078 670832455012716544 NaN NaN 2015-11-29 05:11:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Amy. She is Queen Starburst. 10/10 unexplainably juicy https://t.co/Hj2HtxpcSx NaN NaN NaN https://twitter.com/dog_rates/status/670832455012716544/photo/1 10 10 Amy None None None None
2079 670826280409919488 NaN NaN 2015-11-29 04:47:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 https://t.co/XOPXCSXiUT NaN NaN NaN https://twitter.com/dog_rates/status/670826280409919488/photo/1 2 10 None None None None None
2080 670823764196741120 NaN NaN 2015-11-29 04:37:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Remington. He's a man dime. 12/10 https://t.co/m3ufSDwHHJ NaN NaN NaN https://twitter.com/dog_rates/status/670823764196741120/photo/1 12 10 Remington None None None None
2081 670822709593571328 NaN NaN 2015-11-29 04:32:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Can't do better than this lol. 10/10 for the owner https://t.co/yrqGyMZhW6 NaN NaN NaN https://twitter.com/dog_rates/status/670822709593571328/photo/1 10 10 None None None None None
2082 670815497391357952 NaN NaN 2015-11-29 04:04:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sage. He likes to burn shit. 10/10 https://t.co/nLYruSMRe6 NaN NaN NaN https://twitter.com/dog_rates/status/670815497391357952/photo/1 10 10 Sage None None None None
2083 670811965569282048 NaN NaN 2015-11-29 03:50:10 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Maggie. She enjoys her stick in the yard. Very content. Much tranquility. 10/10 keep it up pup https://t.co/eYP9i9gfYn NaN NaN NaN https://twitter.com/dog_rates/status/670811965569282048/photo/1 10 10 Maggie None None None None
2084 670807719151067136 NaN NaN 2015-11-29 03:33:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Andy. He can balance on one foot, obliterate u in checkers, &amp; transform into a rug. 11/10 much talents https://t.co/idzH8JH06g NaN NaN NaN https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1 11 10 Andy None None None None
2085 670804601705242624 NaN NaN 2015-11-29 03:20:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Mason. He's a total frat boy. Pretends to be Hawaiian. Head is unbelievably round. 10/10 would pet so damn well https://t.co/DM3ZP3AA7b NaN NaN NaN https://twitter.com/dog_rates/status/670804601705242624/photo/1 10 10 Mason None None None None
2086 670803562457407488 NaN NaN 2015-11-29 03:16:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 https://t.co/9ZuGAmLZDR NaN NaN NaN https://twitter.com/dog_rates/status/670803562457407488/photo/1 10 10 None None None None None
2087 670797304698376195 NaN NaN 2015-11-29 02:51:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Trigger. He was minding his own business on stair when he overheard someone say they don't like bacon. 11/10 https://t.co/yqohZK4CL0 NaN NaN NaN https://twitter.com/dog_rates/status/670797304698376195/photo/1 11 10 Trigger None None None None
2088 670792680469889025 NaN NaN 2015-11-29 02:33:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Antony. He's a Sheraton Tetrahedron. Skips awkwardly. Doesn't look when he crosses the road (reckless). 7/10 https://t.co/gTy4WMXu8l NaN NaN NaN https://twitter.com/dog_rates/status/670792680469889025/photo/1 7 10 Antony None None None None
2089 670789397210615808 NaN NaN 2015-11-29 02:20:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once https://t.co/RGcNPsmAfY NaN NaN NaN https://twitter.com/dog_rates/status/670789397210615808/photo/1 9 10 None None None None None
2090 670786190031921152 NaN NaN 2015-11-29 02:07:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 https://t.co/3r7wznfuoa NaN NaN NaN https://twitter.com/dog_rates/status/670786190031921152/photo/1 8 10 Creg None None None None
2091 670783437142401025 NaN NaN 2015-11-29 01:56:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 https://t.co/jxukeh2BeO NaN NaN NaN https://twitter.com/dog_rates/status/670783437142401025/photo/1 1 10 None None None None None
2092 670782429121134593 NaN NaN 2015-11-29 01:52:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This dude slaps your girl's ass what do you do?\n5/10 https://t.co/6dioUL6gcP NaN NaN NaN https://twitter.com/dog_rates/status/670782429121134593/photo/1 5 10 None None None None None
2093 670780561024270336 NaN NaN 2015-11-29 01:45:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all https://t.co/Viu56hVhhP NaN NaN NaN https://twitter.com/dog_rates/status/670780561024270336/photo/1 7 10 Traviss None None None None
2094 670778058496974848 NaN NaN 2015-11-29 01:35:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "To bone or not to bone?"\n10/10 https://t.co/4g5kFdxp6g NaN NaN NaN https://twitter.com/dog_rates/status/670778058496974848/photo/1 10 10 None None None None None
2095 670764103623966721 NaN NaN 2015-11-29 00:39:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Vincent. He's a wild Adderall Cayenne. Shipped for free. Always fresh. Never frozen. 10/10 great purchase https://t.co/ZfS7chSsi7 NaN NaN NaN https://twitter.com/dog_rates/status/670764103623966721/photo/1 10 10 Vincent None None None None
2096 670755717859713024 NaN NaN 2015-11-29 00:06:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Gin &amp; Tonic. They're having a staring contest. Very very intense. 9/10 for both https://t.co/F6bI9dF16E NaN NaN NaN https://twitter.com/dog_rates/status/670755717859713024/photo/1 9 10 Gin None None None None
2097 670733412878163972 NaN NaN 2015-11-28 22:38:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jerry. He's a great listener. Low maintenance. Hard to get leash on tho. 8/10 still good dog https://t.co/NsDIt8Z80Z NaN NaN NaN https://twitter.com/dog_rates/status/670733412878163972/photo/1 8 10 Jerry None None None None
2098 670727704916926465 NaN NaN 2015-11-28 22:15:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jeffrie. He's a handheld pup. Excellent ears. Super fluffy. 10/10 overall topnotch canine https://t.co/SWnrQAFOtt NaN NaN NaN https://twitter.com/dog_rates/status/670727704916926465/photo/1 10 10 Jeffrie None None None None
2099 670717338665226240 NaN NaN 2015-11-28 21:34:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> *screams for a little bit and then crumples to the floor shaking* 12/10 https://t.co/W2MCt9pTed NaN NaN NaN https://twitter.com/dog_rates/status/670717338665226240/photo/1 12 10 None None None None None
2100 670704688707301377 NaN NaN 2015-11-28 20:43:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible https://t.co/I1lMUy1FqH NaN NaN NaN https://twitter.com/dog_rates/status/670704688707301377/photo/1 6 10 Danny None None None None
2101 670691627984359425 NaN NaN 2015-11-28 19:51:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 https://t.co/eCVj2xT59V NaN NaN NaN https://twitter.com/dog_rates/status/670691627984359425/photo/1 8 10 Ester None None None None
2102 670679630144274432 NaN NaN 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 https://t.co/HMcD9SLOAN NaN NaN NaN https://twitter.com/dog_rates/status/670679630144274432/photo/1 8 10 Pluto None None None None
2103 670676092097810432 NaN NaN 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 https://t.co/IAc1QCczMc NaN NaN NaN https://twitter.com/dog_rates/status/670676092097810432/photo/1 8 10 Bloo None None None None
2104 670668383499735048 NaN NaN 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Phineas. He's a magical dog. Only appears through the hole of a donut. 10/10 mysterious pup https://t.co/NECxEHN5YU NaN NaN NaN https://twitter.com/dog_rates/status/670668383499735048/photo/1 10 10 Phineas None None None None
2105 670474236058800128 NaN NaN 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Honor to rate this dog. Great teeth. Nice horns. Unbelievable posture. Fun to pet. Big enough to ride. 10/10 rad dog https://t.co/7JMAHdJ6A4 NaN NaN NaN https://twitter.com/dog_rates/status/670474236058800128/photo/1 10 10 None None None None None
2106 670468609693655041 NaN NaN 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Edd. He's a Czechoslovakian Googolplex Merlot. Ready for Christmas. Take that Starbucks. Very poised. 10/10 https://t.co/dupWSIpSrG NaN NaN NaN https://twitter.com/dog_rates/status/670468609693655041/photo/1 10 10 Edd None None None None
2107 670465786746662913 NaN NaN 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 https://t.co/2BnCLtJMxD NaN NaN NaN https://twitter.com/dog_rates/status/670465786746662913/photo/1 7 10 None None None None None
2108 670452855871037440 NaN NaN 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This dog can't see its haters. 11/10 https://t.co/35BcGFdEAK NaN NaN NaN https://twitter.com/dog_rates/status/670452855871037440/photo/1 11 10 None None None None None
2109 670449342516494336 NaN NaN 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup https://t.co/cixC0M3P1e NaN NaN NaN https://twitter.com/dog_rates/status/670449342516494336/photo/1 5 10 None None None None None
2110 670444955656130560 NaN NaN 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq NaN NaN NaN https://twitter.com/dog_rates/status/670444955656130560/photo/1 10 10 Paull None None None None
2111 670442337873600512 NaN NaN 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Koda. He's large. Looks very soft. Great bangs. Powerful owner. 11/10 would pet the hell out of https://t.co/mzPoS9wCqp NaN NaN NaN https://twitter.com/dog_rates/status/670442337873600512/photo/1 11 10 Koda None None None None
2112 670435821946826752 NaN NaN 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Two unbelievably athletic dogs here. Great form. Perfect execution. 10/10 for both https://t.co/sQuKwSKtDE NaN NaN NaN https://twitter.com/dog_rates/status/670435821946826752/photo/1 10 10 None None None None None
2113 670434127938719744 NaN NaN 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Hank and Sully. Hank is very proud of the pumpkin they found and Sully doesn't give a shit. 11/10 and 8/10 https://t.co/cwoP1ftbrj NaN NaN NaN https://twitter.com/dog_rates/status/670434127938719744/photo/1 11 10 Hank None None None None
2114 670433248821026816 NaN NaN 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sam. He's trying to escape the inordinate monotony of conforming to everyday status quo. 10/10 https://t.co/PXnCdz8qzK NaN NaN NaN https://twitter.com/dog_rates/status/670433248821026816/photo/1 10 10 Sam None None None None
2115 670428280563085312 NaN NaN 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Willy. He's millennial af. 11/10 https://t.co/Fm1SvVLsad NaN NaN NaN https://twitter.com/dog_rates/status/670428280563085312/photo/1 11 10 Willy None None None None
2116 670427002554466305 NaN NaN 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute https://t.co/CtuJoLHiDo NaN NaN NaN https://twitter.com/dog_rates/status/670427002554466305/photo/1 9 10 a None None None None
2117 670421925039075328 NaN NaN 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Herb. 12/10 https://t.co/tLRyYvCci3 NaN NaN NaN https://twitter.com/dog_rates/status/670421925039075328/photo/1 12 10 Herb None None None None
2118 670420569653809152 NaN NaN 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Damon. The newest presidential candidate for 2016. 10/10 he gets my vote https://t.co/Z5nqlfjYJi NaN NaN NaN https://twitter.com/dog_rates/status/670420569653809152/photo/1 10 10 Damon None None None None
2119 670417414769758208 NaN NaN 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho https://t.co/Dfv2YaHPMn NaN NaN NaN https://twitter.com/dog_rates/status/670417414769758208/photo/1 6 10 None None None None None
2120 670411370698022913 NaN NaN 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Scooter. He's ready for his first day of middle school. Remarkable tongue. 12/10 https://t.co/1DJfHmfBQN NaN NaN NaN https://twitter.com/dog_rates/status/670411370698022913/photo/1 12 10 Scooter None None None None
2121 670408998013820928 NaN NaN 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Peanut. He was the World Table Tennis Champion back in 2003. Now he just does it for recreation. 10/10 https://t.co/LXVEHo9JMY NaN NaN NaN https://twitter.com/dog_rates/status/670408998013820928/photo/1 10 10 Peanut None None None None
2122 670403879788544000 NaN NaN 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Nigel. He accidentally popped his ball after dunking so hard the backboard shattered. 10/10 great great pup https://t.co/vSd1TWFK1I NaN NaN NaN https://twitter.com/dog_rates/status/670403879788544000/photo/1 10 10 Nigel None None None None
2123 670385711116361728 NaN NaN 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 https://t.co/MAZx8MPF0S NaN NaN NaN https://twitter.com/dog_rates/status/670385711116361728/photo/1 8 10 Larry None None None None
2124 670374371102445568 NaN NaN 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Daisy. She's rebellious. Full of teen angst. Thought her food should be evenly dispersed around the room. 12/10 https://t.co/8yzgYzP94K NaN NaN NaN https://twitter.com/dog_rates/status/670374371102445568/photo/1 12 10 Daisy None None None None
2125 670361874861563904 NaN NaN 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 https://t.co/98ZBi6o4dj NaN NaN NaN https://twitter.com/dog_rates/status/670361874861563904/photo/1 9 10 a None None None None
2126 670338931251150849 NaN NaN 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Butters. He's not ready for Thanksgiving to be over. 10/10 poor Butters https://t.co/iTc578yDmY NaN NaN NaN https://twitter.com/dog_rates/status/670338931251150849/photo/1 10 10 Butters None None None None
2127 670319130621435904 NaN NaN 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA NaN NaN NaN https://twitter.com/dog_rates/status/670319130621435904/photo/1 11 10 None None None None None
2128 670303360680108032 NaN NaN 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN NaN NaN NaN https://twitter.com/dog_rates/status/670303360680108032/photo/1 9 10 a None None None None
2129 670290420111441920 NaN NaN 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sandra. She's going skydiving. Nice adidas sandals. Stellar house plant. 11/10 https://t.co/orbkAq9kYF NaN NaN NaN https://twitter.com/dog_rates/status/670290420111441920/photo/1 11 10 Sandra None None None None
2130 670093938074779648 NaN NaN 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 https://t.co/vYs9IVzHY9 NaN NaN NaN https://twitter.com/dog_rates/status/670093938074779648/photo/1 9 10 Wally None None None None
2131 670086499208155136 NaN NaN 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 https://t.co/DuQXATW27f NaN NaN NaN https://twitter.com/dog_rates/status/670086499208155136/photo/1 10 10 None None None None None
2132 670079681849372674 NaN NaN 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Fabio. He's a wonderful pup. Can't stay away from the devil's lettuce but other than that he's a delight. 10/10 https://t.co/Qvj4JZGdQD NaN NaN NaN https://twitter.com/dog_rates/status/670079681849372674/photo/1 10 10 Fabio None None None None
2133 670073503555706880 NaN NaN 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Winston. He wants to be a power drill. Very focused. 10/10 I believe in you Winston https://t.co/exGrzT9O88 NaN NaN NaN https://twitter.com/dog_rates/status/670073503555706880/photo/1 10 10 Winston None None None None
2134 670069087419133954 NaN NaN 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Randall. He's from Chernobyl. Built playground himself. Has been stuck up there quite a while. 5/10 good dog https://t.co/pzrvc7wKGd NaN NaN NaN https://twitter.com/dog_rates/status/670069087419133954/photo/1 5 10 Randall None None None None
2135 670061506722140161 NaN NaN 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Liam. He has a particular set of skills. He will look for you, he will find you, and he will kill you. 11/10 https://t.co/uQMFKv1vjn NaN NaN NaN https://twitter.com/dog_rates/status/670061506722140161/photo/1 11 10 Liam None None None None
2136 670055038660800512 NaN NaN 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tommy. He's a cool dog. Hard not to step on. Won't let go of seashell. Not fast by any means. 3/10 https://t.co/0gY6XTOpn3 NaN NaN NaN https://twitter.com/dog_rates/status/670055038660800512/photo/1 3 10 Tommy None None None None
2137 670046952931721218 NaN NaN 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ben &amp; Carson. It's impossible for them to tilt their heads in the same direction. Cheeky wink by Ben. 11/10s https://t.co/465sIBdvzU NaN NaN NaN https://twitter.com/dog_rates/status/670046952931721218/photo/1 11 10 Ben None None None None
2138 670040295598354432 NaN NaN 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 😂😂😂 10/10 for the dog and the owner https://t.co/5iYF0Ci0EK NaN NaN NaN https://twitter.com/dog_rates/status/670040295598354432/photo/1 10 10 None None None None None
2139 670037189829525505 NaN NaN 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable https://t.co/rOTOteKx4q NaN NaN NaN https://twitter.com/dog_rates/status/670037189829525505/photo/1 5 10 None None None None None
2140 670003130994700288 NaN NaN 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Raphael. He is a Baskerville Conquistador. Entertains at all the gatherings. 10/10 simply magnificent https://t.co/3NTykJmtHt NaN NaN NaN https://twitter.com/dog_rates/status/670003130994700288/photo/1 10 10 Raphael None None None None
2141 669993076832759809 NaN NaN 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zoey. Her dreams of becoming a hippo ballerina don't look promising. 9/10 it'll be ok puppers https://t.co/kR1fqy4NKK NaN NaN NaN https://twitter.com/dog_rates/status/669993076832759809/photo/1 9 10 Zoey None None None None
2142 669972011175813120 NaN NaN 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once https://t.co/A6XnvxHiUQ NaN NaN NaN https://twitter.com/dog_rates/status/669972011175813120/photo/1 10 10 None None None None None
2143 669970042633789440 NaN NaN 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Julio. He was one of the original Ringling Bros. Exceptional balance. Very alert. Ready for anything. 10/10 https://t.co/aeURGO9Qs8 NaN NaN NaN https://twitter.com/dog_rates/status/669970042633789440/photo/1 10 10 Julio None None None None
2144 669942763794931712 NaN NaN 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Andru. He made his very own lacrosse stick. Much dedication. Big dreams. Tongue slip. 11/10 go get em Andru https://t.co/1VJoY3OJ1F NaN NaN NaN https://twitter.com/dog_rates/status/669942763794931712/photo/1 11 10 Andru None None None None
2145 669926384437997569 NaN NaN 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute https://t.co/9RYY2NtHDw NaN NaN NaN https://twitter.com/dog_rates/status/669926384437997569/photo/1 12 10 None None None None None
2146 669923323644657664 NaN NaN 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a spotted Lipitor Rumpelstiltskin named Alphred. He can't wait for the Turkey. 10/10 would pet really well https://t.co/6GUGO7azNX NaN NaN NaN https://twitter.com/dog_rates/status/669923323644657664/photo/1 10 10 a None None None None
2147 669753178989142016 NaN NaN 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Chester. He just ate a lot and now he can't move. 10/10 that's going to be me in about 17 hours https://t.co/63jh1tYZa5 NaN NaN NaN https://twitter.com/dog_rates/status/669753178989142016/photo/1 10 10 Chester None None None None
2148 669749430875258880 NaN NaN 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Clarence. Clarence thought he saw a squirrel. He was just trying to help. 8/10 poor Clarence https://t.co/tbFaTUHLJB NaN NaN NaN https://twitter.com/dog_rates/status/669749430875258880/photo/1 8 10 Clarence None None None None
2149 669684865554620416 6.693544e+17 4.196984e+09 2015-11-26 01:11:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After countless hours of research and hundreds of formula alterations we have concluded that Dug should be bumped to an 11/10 NaN NaN NaN NaN 11 10 None None None None None
2150 669683899023405056 NaN NaN 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kloey. Her mother was a unicorn. 10/10 https://t.co/NvKJRYDosA NaN NaN NaN https://twitter.com/dog_rates/status/669683899023405056/photo/1 10 10 Kloey None None None None
2151 669682095984410625 NaN NaN 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Louie. He just pounded that bottle of wine. 9/10 goodnight Louie https://t.co/RAwZvMKRZB NaN NaN NaN https://twitter.com/dog_rates/status/669682095984410625/photo/1 9 10 Louie None None None None
2152 669680153564442624 NaN NaN 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole https://t.co/IQFZKNUlXx NaN NaN NaN https://twitter.com/dog_rates/status/669680153564442624/photo/1 8 10 Shawwn None None None None
2153 669661792646373376 NaN NaN 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 https://t.co/ODnILTr4QM NaN NaN NaN https://twitter.com/dog_rates/status/669661792646373376/photo/1 5 10 a None None None None
2154 669625907762618368 NaN NaN 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Penny. She's having fun AND being safe. 12/10 very responsible pup https://t.co/eqeWw67oU7 NaN NaN NaN https://twitter.com/dog_rates/status/669625907762618368/photo/1 12 10 Penny None None None None
2155 669603084620980224 NaN NaN 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 https://t.co/MSIbWu4YYs NaN NaN NaN https://twitter.com/dog_rates/status/669603084620980224/photo/1 10 10 None None None None None
2156 669597912108789760 NaN NaN 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Skye. He is a Bretwaldian Altostratus. Not amused at all. Just saved small dog from avalanche. 10/10 hero af https://t.co/XmCvma01fF NaN NaN NaN https://twitter.com/dog_rates/status/669597912108789760/photo/1 10 10 Skye None None None None
2157 669583744538451968 NaN NaN 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet https://t.co/f8GXeDbFzu NaN NaN NaN https://twitter.com/dog_rates/status/669583744538451968/photo/1 6 10 None None None None None
2158 669573570759163904 NaN NaN 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Linda. She just looked up and saw you glancing at your neighboring classmate's test. 10/10 https://t.co/UpFFYhA1Id NaN NaN NaN https://twitter.com/dog_rates/status/669573570759163904/photo/1 10 10 Linda None None None None
2159 669571471778410496 NaN NaN 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Keith. He's had 13 DUIs. 7/10 that's too many Keith https://t.co/fa7olwrF9Y NaN NaN NaN https://twitter.com/dog_rates/status/669571471778410496/photo/1 7 10 Keith None None None None
2160 669567591774625800 NaN NaN 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 https://t.co/XPLB3eoXiX NaN NaN NaN https://twitter.com/dog_rates/status/669567591774625800/photo/1 9 10 Kollin None None None None
2161 669564461267722241 NaN NaN 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl NaN NaN NaN https://twitter.com/dog_rates/status/669564461267722241/photo/1 10 10 a None None None None
2162 669393256313184256 NaN NaN 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Ronduh. She's a Finnish Checkered Blitzkrieg. Ears look fake. Shoes on point. 10/10 would pet extra well https://t.co/juktj5qiaD NaN NaN NaN https://twitter.com/dog_rates/status/669393256313184256/photo/1 10 10 Ronduh None None None None
2163 669375718304980992 NaN NaN 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl https://t.co/ero0XfdGtY NaN NaN NaN https://twitter.com/dog_rates/status/669375718304980992/photo/1 6 10 Billl None None None None
2164 669371483794317312 NaN NaN 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk NaN NaN NaN https://twitter.com/dog_rates/status/669371483794317312/photo/1 10 10 Oliviér None None None None
2165 669367896104181761 NaN NaN 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chip. Chip's pretending to be choked. 10/10 lol classic Chip https://t.co/yoB0SM1AAP NaN NaN NaN https://twitter.com/dog_rates/status/669367896104181761/photo/1 10 10 Chip None None None None
2166 669363888236994561 NaN NaN 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend https://t.co/jPkd7hhX7m NaN NaN NaN https://twitter.com/dog_rates/status/669363888236994561/photo/1 10 10 None None None None None
2167 669359674819481600 NaN NaN 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Saydee. She's a Rochester Ecclesiastical. Jumped off cliff and caught stick on way down. 11/10 1st round pick https://t.co/Eh2v0AyJbi NaN NaN NaN https://twitter.com/dog_rates/status/669359674819481600/photo/1 11 10 Saydee None None None None
2168 669354382627049472 NaN NaN 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Dug. Dug fucken loves peaches. 8/10 https://t.co/JtA1TG21Xx NaN NaN NaN https://twitter.com/dog_rates/status/669354382627049472/photo/1 8 10 Dug None None None None
2169 669353438988365824 6.678065e+17 4.196984e+09 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv NaN NaN NaN https://twitter.com/dog_rates/status/669353438988365824/photo/1 10 10 Tessa None None None None
2170 669351434509529089 NaN NaN 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sully. He's a Leviticus Galapagos. Very powerful. Borderline unstoppable. Cool goggles. 10/10 https://t.co/zKNF77dxEA NaN NaN NaN https://twitter.com/dog_rates/status/669351434509529089/photo/1 10 10 Sully None None None None
2171 669328503091937280 NaN NaN 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kirk. He just saw a bacon wrapped tennis ball and literally died. So sad. 12/10 RIP Kirk https://t.co/0twoigv5jP NaN NaN NaN https://twitter.com/dog_rates/status/669328503091937280/photo/1 12 10 Kirk None None None None
2172 669327207240699904 NaN NaN 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all https://t.co/6WGFp9cuj6 NaN NaN NaN https://twitter.com/dog_rates/status/669327207240699904/photo/1 13 10 None None None None None
2173 669324657376567296 NaN NaN 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Ralf. He's a miniature Buick DiCaprio. Can float (whoa). Loves to beach. Snazzy green vest. 11/10 I'd hug Ralf https://t.co/R5Z6jBTdhc NaN NaN NaN https://twitter.com/dog_rates/status/669324657376567296/photo/1 11 10 Ralf None None None None
2174 669216679721873412 NaN NaN 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly https://t.co/d8ybynaRwZ NaN NaN NaN https://twitter.com/dog_rates/status/669216679721873412/photo/1 8 10 Clarq None None None None
2175 669214165781868544 NaN NaN 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jaspers. He is a northeastern Gillette. Just got his license. Very excited. 10/10 they grow up so fast https://t.co/cieaOI0RuT NaN NaN NaN https://twitter.com/dog_rates/status/669214165781868544/photo/1 10 10 Jaspers None None None None
2176 669203728096960512 NaN NaN 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy https://t.co/HPoce45SI3 NaN NaN NaN https://twitter.com/dog_rates/status/669203728096960512/photo/1 9 10 Samsom None None None None
2177 669037058363662336 NaN NaN 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 &amp; 7/10 https://t.co/Lh1BsJrWPp NaN NaN NaN https://twitter.com/dog_rates/status/669037058363662336/photo/1 10 10 None None None None None
2178 669015743032369152 NaN NaN 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Super rare dog right here guys. Doesn't bark. Seems strong. Blue. Very family friendly pet. 10/10 overall good dog https://t.co/Jykq2iq3qN NaN NaN NaN https://twitter.com/dog_rates/status/669015743032369152/photo/1 10 10 None None None None None
2179 669006782128353280 NaN NaN 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tucker. He is 100% ready for the sports. 12/10 I would watch anything with him https://t.co/k0ddVUWTcu NaN NaN NaN https://twitter.com/dog_rates/status/669006782128353280/photo/1 12 10 Tucker None None None None
2180 669000397445533696 NaN NaN 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD NaN NaN NaN https://twitter.com/dog_rates/status/669000397445533696/photo/1 11 10 Terrance None None None None
2181 668994913074286592 NaN NaN 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well https://t.co/w5oYFXi0uh NaN NaN NaN https://twitter.com/dog_rates/status/668994913074286592/photo/1 5 10 None None None None None
2182 668992363537309700 NaN NaN 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Harrison. He braves the snow like a champ. Perched at all times. Hasn't blinked in months. 8/10 v nifty dog https://t.co/tiVuq6MNwl NaN NaN NaN https://twitter.com/dog_rates/status/668992363537309700/photo/1 8 10 Harrison None None None None
2183 668989615043424256 NaN NaN 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh https://t.co/1zBp1moFlX NaN NaN NaN https://twitter.com/dog_rates/status/668989615043424256/photo/1 3 10 Bernie None None None None
2184 668988183816871936 NaN NaN 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 https://t.co/bMhs18elNF NaN NaN NaN https://twitter.com/dog_rates/status/668988183816871936/photo/1 7 10 None None None None None
2185 668986018524233728 NaN NaN 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 https://t.co/j0Wpa42KCH NaN NaN NaN https://twitter.com/dog_rates/status/668986018524233728/photo/1 9 10 Ruby None None None None
2186 668981893510119424 NaN NaN 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner https://t.co/0EJXxE9UxW NaN NaN NaN https://twitter.com/dog_rates/status/668981893510119424/photo/1 4 10 None None None None None
2187 668979806671884288 NaN NaN 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Chaz. He's an X Games half pipe superstar. 6 gold medals. Lost back legs saving a baby from a tornado 12/10 https://t.co/uxdOfblUB0 NaN NaN NaN https://twitter.com/dog_rates/status/668979806671884288/photo/1 12 10 Chaz None None None None
2188 668975677807423489 NaN NaN 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jeremy. He hasn't grown into his skin yet. Ears hit the floor. Probably trips on them sometimes. 11/10 https://t.co/LqAMlFVBoY NaN NaN NaN https://twitter.com/dog_rates/status/668975677807423489/photo/1 11 10 Jeremy None None None None
2189 668967877119254528 6.689207e+17 2.143566e+07 2015-11-24 01:42:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 12/10 good shit Bubka\n@wane15 NaN NaN NaN NaN 12 10 None None None None None
2190 668960084974809088 NaN NaN 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Jaycob. He got scared of the vacuum. Hide &amp; seek champ. Almost better than Kony. Solid shampoo selection. 10/10 https://t.co/952hUV6RiK NaN NaN NaN https://twitter.com/dog_rates/status/668960084974809088/photo/1 10 10 Jaycob None None None None
2191 668955713004314625 NaN NaN 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 NaN NaN NaN https://twitter.com/dog_rates/status/668955713004314625/photo/1 10 10 a None None None None
2192 668932921458302977 NaN NaN 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 https://t.co/rcrKkL7eB6 NaN NaN NaN https://twitter.com/dog_rates/status/668932921458302977/photo/1 9 10 Herald None None None None
2193 668902994700836864 NaN NaN 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Lambeau. He's a Whistling Haiku from the plains of southern Guatemala. 11/10 so. damn. majestic. https://t.co/UqCvpSgMJe NaN NaN NaN https://twitter.com/dog_rates/status/668902994700836864/photo/1 11 10 Lambeau None None None None
2194 668892474547511297 NaN NaN 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ruffles. He is an Albanian Shoop Da Whoop. He just noticed the camera. Patriotic af. Classy hardwood. 11/10 https://t.co/HyDpTU5Jhj NaN NaN NaN https://twitter.com/dog_rates/status/668892474547511297/photo/1 11 10 Ruffles None None None None
2195 668872652652679168 NaN NaN 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Amélie. She is a confident white college girl. Extremely intimidating. Literally can't rn omg. 11/10 fab https://t.co/up0MHRxelf NaN NaN NaN https://twitter.com/dog_rates/status/668872652652679168/photo/1 11 10 Amélie None None None None
2196 668852170888998912 NaN NaN 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Bobb. Bobb is a Golden High Fescue &amp; a proud father of 8. Bobb sleeps while the little pups play. 11/10 https://t.co/OmxouCZ8IY NaN NaN NaN https://twitter.com/dog_rates/status/668852170888998912/photo/1 11 10 Bobb None None None None
2197 668826086256599040 NaN NaN 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Banditt. He is a brown LaBeouf retriever. Loves cold weather. 4 smaller dogs are his sons (probably). 10/10 https://t.co/Ko7eCsFpnI NaN NaN NaN https://twitter.com/dog_rates/status/668826086256599040/photo/1 10 10 Banditt None None None None
2198 668815180734689280 NaN NaN 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog https://t.co/IGmVbz07tZ NaN NaN NaN https://twitter.com/dog_rates/status/668815180734689280/photo/1 7 10 a None None None None
2199 668779399630725120 NaN NaN 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Kevon. He is not physically or mentally prepared to start his Monday. 10/10 totes relatable https://t.co/YVAJgWHzPW NaN NaN NaN https://twitter.com/dog_rates/status/668779399630725120/photo/1 10 10 Kevon None None None None
2200 668655139528511488 NaN NaN 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Winifred. He is a Papyrus Hydrangea mix. Can tie shoes. 11/10 inspiring pup https://t.co/mwnBN6ZkPt NaN NaN NaN https://twitter.com/dog_rates/status/668655139528511488/photo/1 11 10 Winifred None None None None
2201 668645506898350081 NaN NaN 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Incredibly rare dog here. Good at bipedalism. Rad blue spikes. Ready to dance. 11/10 https://t.co/70X1TIXn38 NaN NaN NaN https://twitter.com/dog_rates/status/668645506898350081/photo/1 11 10 None None None None None
2202 668643542311546881 NaN NaN 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet https://t.co/IiSdmhkC5N NaN NaN NaN https://twitter.com/dog_rates/status/668643542311546881/photo/1 3 10 None None None None None
2203 668641109086707712 NaN NaN 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Hanz. He heard some thunder. 10/10 https://t.co/pKJK23j0QZ NaN NaN NaN https://twitter.com/dog_rates/status/668641109086707712/photo/1 10 10 Hanz None None None None
2204 668636665813057536 NaN NaN 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg NaN NaN NaN https://twitter.com/dog_rates/status/668636665813057536/photo/1 10 10 an None None None None
2205 668633411083464705 NaN NaN 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Churlie. He likes bagels. 10/10 https://t.co/k8P6FZlzAG NaN NaN NaN https://twitter.com/dog_rates/status/668633411083464705/photo/1,https://twitter.com/dog_rates/status/668633411083464705/photo/1 10 10 Churlie None None None None
2206 668631377374486528 NaN NaN 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying https://t.co/fvVNScw8VH NaN NaN NaN https://twitter.com/dog_rates/status/668631377374486528/photo/1 5 10 Zeek None None None None
2207 668627278264475648 NaN NaN 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Timofy. He's a pilot for Southwest. It's Christmas morning &amp; everyone has gotten kickass gifts but him. 9/10 https://t.co/3FuNbzyPwo NaN NaN NaN https://twitter.com/dog_rates/status/668627278264475648/photo/1 9 10 Timofy None None None None
2208 668625577880875008 NaN NaN 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Maks. Maks just noticed something wasn't right. 10/10 https://t.co/0zBycaxyvs NaN NaN NaN https://twitter.com/dog_rates/status/668625577880875008/photo/1 10 10 Maks None None None None
2209 668623201287675904 NaN NaN 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jomathan. He is not thrilled about the length of the grass. 10/10 https://t.co/TIhVKEIPqj NaN NaN NaN https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1 10 10 Jomathan None None None None
2210 668620235289837568 NaN NaN 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Kallie. There was a tornado in the area &amp; the news guy said everyone should wear a helmet. 10/10 adorbz https://t.co/AGyogHtmXx NaN NaN NaN https://twitter.com/dog_rates/status/668620235289837568/photo/1 10 10 Kallie None None None None
2211 668614819948453888 NaN NaN 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm NaN NaN NaN https://twitter.com/dog_rates/status/668614819948453888/photo/1 7 10 a None None None None
2212 668587383441514497 NaN NaN 2015-11-23 00:30:28 +0000 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> Never forget this vine. You will not stop watching for at least 15 minutes. This is the second coveted.. 13/10 https://t.co/roqIxCvEB3 NaN NaN NaN https://vine.co/v/ea0OwvPTx9l 13 10 the None None None None
2213 668567822092664832 NaN NaN 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Marvin. He can tie a bow tie better than me. 11/10 https://t.co/81kzPgqjQ3 NaN NaN NaN https://twitter.com/dog_rates/status/668567822092664832/photo/1 11 10 Marvin None None None None
2214 668544745690562560 NaN NaN 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> It is an honor to rate this pup. He is a Snorklhuahua from Amarillo. A true renaissance dog. Also part Rudolph 10/10 https://t.co/ALNyYuGui7 NaN NaN NaN https://twitter.com/dog_rates/status/668544745690562560/photo/1 10 10 None None None None None
2215 668542336805281792 NaN NaN 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs https://t.co/VvYVbsi6c3 NaN NaN NaN https://twitter.com/dog_rates/status/668542336805281792/photo/1 10 10 None None None None None
2216 668537837512433665 NaN NaN 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&amp;1/10 https://t.co/stEodX9Aba NaN NaN NaN https://twitter.com/dog_rates/status/668537837512433665/photo/1 8 10 Spark None None None None
2217 668528771708952576 NaN NaN 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW NaN NaN NaN https://twitter.com/dog_rates/status/668528771708952576/photo/1 12 10 Gòrdón None None None None
2218 668507509523615744 NaN NaN 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt NaN NaN NaN https://twitter.com/dog_rates/status/668507509523615744/photo/1 10 10 a None None None None
2219 668496999348633600 NaN NaN 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 https://t.co/Edy7B5vOp2 NaN NaN NaN https://twitter.com/dog_rates/status/668496999348633600/photo/1 8 10 Jo None None None None
2220 668484198282485761 NaN NaN 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups https://t.co/uXgmECGYEB NaN NaN NaN https://twitter.com/dog_rates/status/668484198282485761/photo/1 9 10 None None None None None
2221 668480044826800133 NaN NaN 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to DayZ. She is definitely stuck on that stair. Just looking for someone to help her. 11/10 I would help https://t.co/be3zMW0Qj5 NaN NaN NaN https://twitter.com/dog_rates/status/668480044826800133/photo/1 11 10 DayZ None None None None
2222 668466899341221888 NaN NaN 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 https://t.co/YOHe6lf09m NaN NaN NaN https://twitter.com/dog_rates/status/668466899341221888/photo/1 4 10 a None None None None
2223 668297328638447616 NaN NaN 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s https://t.co/P8bivfp5sU NaN NaN NaN https://twitter.com/dog_rates/status/668297328638447616/photo/1 9 10 None None None None None
2224 668291999406125056 NaN NaN 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I can't do better than he did. 10/10 https://t.co/fM0KXns7Or NaN NaN NaN https://twitter.com/dog_rates/status/668291999406125056/photo/1 10 10 None None None None None
2225 668286279830867968 NaN NaN 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Rusty. Rusty's dreaming of a world where Twitter never got rid of favorites. Looks like a happy world. 11/10 https://t.co/C8U6cxI1Jc NaN NaN NaN https://twitter.com/dog_rates/status/668286279830867968/photo/1 11 10 Rusty None None None None
2226 668274247790391296 NaN NaN 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sophie. Her son just got in the car to leave for college. Very touching. Perfect dramatic sunlight. 10/10 yaass https://t.co/3j9kZRcpVB NaN NaN NaN https://twitter.com/dog_rates/status/668274247790391296/photo/1 10 10 Sophie None None None None
2227 668268907921326080 NaN NaN 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert https://t.co/aeZykWwiJN NaN NaN NaN https://twitter.com/dog_rates/status/668268907921326080/photo/1 10 10 None None None None None
2228 668256321989451776 NaN NaN 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jareld. Jareld rules these waters. Ladies and Gentleman... 13/10. This dog is utterly fucking spectacular. https://t.co/L6qAEV5PAd NaN NaN NaN https://twitter.com/dog_rates/status/668256321989451776/photo/1 13 10 Jareld None None None None
2229 668248472370458624 NaN NaN 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho https://t.co/1XYRh8N00K NaN NaN NaN https://twitter.com/dog_rates/status/668248472370458624/photo/1 8 10 Bisquick None None None None
2230 668237644992782336 NaN NaN 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Torque. He served his nickel. Better not owe Torque money. Torque will find u. 10/10 cause I'm scared of him https://t.co/TnSRDqYO5i NaN NaN NaN https://twitter.com/dog_rates/status/668237644992782336/photo/1 10 10 Torque None None None None
2231 668226093875376128 NaN NaN 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Sneaky dog here. Tuba player has no clue. 10/10 super sneaky https://t.co/jWVwSppaa2 NaN NaN NaN https://twitter.com/dog_rates/status/668226093875376128/photo/1 10 10 None None None None None
2232 668221241640230912 NaN NaN 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> These two dogs are Bo &amp; Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals https://t.co/4pw1QQ6udh NaN NaN NaN https://twitter.com/dog_rates/status/668221241640230912/photo/1 10 10 None None None None None
2233 668204964695683073 NaN NaN 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 https://t.co/4ilfcR5SlK NaN NaN NaN https://twitter.com/dog_rates/status/668204964695683073/photo/1 8 10 Ron None None None None
2234 668190681446379520 NaN NaN 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Skittles. I would kidnap Skittles. Pink dog in back hasn't moved in days. 12/10 https://t.co/2wm0POA9N2 NaN NaN NaN https://twitter.com/dog_rates/status/668190681446379520/photo/1 12 10 Skittles None None None None
2235 668171859951755264 NaN NaN 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb NaN NaN NaN https://twitter.com/dog_rates/status/668171859951755264/photo/1 7 10 a None None None None
2236 668154635664932864 NaN NaN 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both https://t.co/79sHR36NsI NaN NaN NaN https://twitter.com/dog_rates/status/668154635664932864/photo/1 9 10 None None None None None
2237 668142349051129856 NaN NaN 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 https://t.co/DnhUw0aBM2 NaN NaN NaN https://twitter.com/dog_rates/status/668142349051129856/photo/1 2 10 None None None None None
2238 668113020489474048 NaN NaN 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 https://t.co/GCJzm3YsfX NaN NaN NaN https://twitter.com/dog_rates/status/668113020489474048/photo/1 6 10 Alfie None None None None
2239 667937095915278337 NaN NaN 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun https://t.co/x89NSCEZCq NaN NaN NaN https://twitter.com/dog_rates/status/667937095915278337/photo/1 3 10 None None None None None
2240 667924896115245057 NaN NaN 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 https://t.co/fW6kIPFGD2 NaN NaN NaN https://twitter.com/dog_rates/status/667924896115245057/photo/1 9 10 Jiminy None None None None
2241 667915453470232577 NaN NaN 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Otis. He is a Peruvian Quartzite. Pic sponsored by Planters. Ears on point. Killer sunglasses. 10/10 ily Otis https://t.co/tIaaBIMlJN NaN NaN NaN https://twitter.com/dog_rates/status/667915453470232577/photo/1 10 10 Otis None None None None
2242 667911425562669056 NaN NaN 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 https://t.co/SyMoWrp368 NaN NaN NaN https://twitter.com/dog_rates/status/667911425562669056/photo/1 5 10 None None None None None
2243 667902449697558528 NaN NaN 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with https://t.co/sJeHdGUt0W NaN NaN NaN https://twitter.com/dog_rates/status/667902449697558528/photo/1 9 10 Cleopatricia None None None None
2244 667886921285246976 NaN NaN 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Erik. He's fucken massive. But also kind. Let's people hug him for free. Looks soft. 11/10 I would hug Erik https://t.co/MT7Q4aDQS1 NaN NaN NaN https://twitter.com/dog_rates/status/667886921285246976/photo/1 11 10 Erik None None None None
2245 667885044254572545 NaN NaN 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Stu. Stu has stacks on stacks and an eye made of pure gold. 10/10 pay for my tuition pls https://t.co/7rkYZQdKEd NaN NaN NaN https://twitter.com/dog_rates/status/667885044254572545/photo/1 10 10 Stu None None None None
2246 667878741721415682 NaN NaN 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Tedrick. He lives on the edge. Needs someone to hit the gas tho. Other than that he's a baller. 10&amp;2/10 https://t.co/LvP1TTYSCN NaN NaN NaN https://twitter.com/dog_rates/status/667878741721415682/photo/1 2 10 Tedrick None None None None
2247 667873844930215936 NaN NaN 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Neat dog. Lots of spikes. Always in push-up position. Laid a shit ton of eggs earlier. Super stellar pup. 10/10 https://t.co/ODqrL3zXYE NaN NaN NaN https://twitter.com/dog_rates/status/667873844930215936/photo/1 10 10 None None None None None
2248 667866724293877760 NaN NaN 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https://t.co/SBmWbfAg6X NaN NaN NaN https://twitter.com/dog_rates/status/667866724293877760/photo/1 10 10 Shaggy None None None None
2249 667861340749471744 NaN NaN 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba NaN NaN NaN https://twitter.com/dog_rates/status/667861340749471744/photo/1 9 10 a None None None None
2250 667832474953625600 NaN NaN 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable https://t.co/z1xPTgVLc7 NaN NaN NaN https://twitter.com/dog_rates/status/667832474953625600/photo/1 12 10 None None None None None
2251 667806454573760512 NaN NaN 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Filup. He is overcome with joy after finally meeting his father. 10/10 https://t.co/TBmDJXJB75 NaN NaN NaN https://twitter.com/dog_rates/status/667806454573760512/photo/1 10 10 Filup None None None None
2252 667801013445750784 NaN NaN 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> OMIGOD 12/10 https://t.co/SVMF4Frf1w NaN NaN NaN https://twitter.com/dog_rates/status/667801013445750784/photo/1 12 10 None None None None None
2253 667793409583771648 NaN NaN 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 https://t.co/s1z7mX4c9O NaN NaN NaN https://twitter.com/dog_rates/status/667793409583771648/photo/1 8 10 None None None None None
2254 667782464991965184 NaN NaN 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 https://t.co/BY8nQAMz0x NaN NaN NaN https://twitter.com/dog_rates/status/667782464991965184/photo/1 9 10 None None None None None
2255 667773195014021121 NaN NaN 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD NaN NaN NaN https://twitter.com/dog_rates/status/667773195014021121/photo/1 8 10 a None None None None
2256 667766675769573376 NaN NaN 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Calvin. He is a Luxembourgian Mayo. Having issues with truck. Has it under control tho. 9/10 responsible af https://t.co/3Bbba7y8Xe NaN NaN NaN https://twitter.com/dog_rates/status/667766675769573376/photo/1 9 10 Calvin None None None None
2257 667728196545200128 NaN NaN 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Meet Olive. He comes to spot by tree to reminisce of simpler times and truly admire his place in the universe. 11/10 https://t.co/LwrCwlWwPB NaN NaN NaN https://twitter.com/dog_rates/status/667728196545200128/photo/1 11 10 Olive None None None None
2258 667724302356258817 NaN NaN 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 https://t.co/0nIxPTDWAZ NaN NaN NaN https://twitter.com/dog_rates/status/667724302356258817/photo/1 7 10 None None None None None
2259 667550904950915073 NaN NaN 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> RT @dogratingrating: Exceptional talent. Original humor. Cutting edge, Nova Scotian comedian. 12/10 https://t.co/uarnTjBeVA 6.675487e+17 4.296832e+09 2015-11-20 03:43:06 +0000 https://twitter.com/dogratingrating/status/667548695664070656/photo/1,https://twitter.com/dogratingrating/status/667548695664070656/photo/1 12 10 None None None None None
2260 667550882905632768 NaN NaN 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> RT @dogratingrating: Unoriginal idea. Blatant plagiarism. Curious grammar. -5/10 https://t.co/r7XzeQZWzb 6.675484e+17 4.296832e+09 2015-11-20 03:41:59 +0000 https://twitter.com/dogratingrating/status/667548415174144001/photo/1,https://twitter.com/dogratingrating/status/667548415174144001/photo/1 5 10 None None None None None
2261 667549055577362432 NaN NaN 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 https://t.co/i9iSGNn3fx NaN NaN NaN https://twitter.com/dog_rates/status/667549055577362432/photo/1 1 10 None None None None None
2262 667546741521195010 NaN NaN 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 https://t.co/afRtVsoIIb NaN NaN NaN https://twitter.com/dog_rates/status/667546741521195010/photo/1 9 10 George None None None None
2263 667544320556335104 NaN NaN 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Kial. Kial is either wearing a cape, which would be rad, or flashing us, which would be rude. 10/10 or 4/10 https://t.co/8zcwIoiuqR NaN NaN NaN https://twitter.com/dog_rates/status/667544320556335104/photo/1 10 10 Kial None None None None
2264 667538891197542400 NaN NaN 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe NaN NaN NaN https://twitter.com/dog_rates/status/667538891197542400/photo/1 9 10 a None None None None
2265 667534815156183040 NaN NaN 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 https://t.co/CpPxD28IpV NaN NaN NaN https://twitter.com/dog_rates/status/667534815156183040/photo/1 8 10 Frank None None None None
2266 667530908589760512 NaN NaN 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Meet Naphaniel. He doesn't necessarily enjoy his day job, but he's damn good at it. 10/10 https://t.co/xoRWyQTcmy NaN NaN NaN https://twitter.com/dog_rates/status/667530908589760512/photo/1 10 10 Naphaniel None None None None
2267 667524857454854144 NaN NaN 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup https://t.co/seESNzgsdm NaN NaN NaN https://twitter.com/dog_rates/status/667524857454854144/photo/1 12 10 None None None None None
2268 667517642048163840 NaN NaN 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Dook &amp; Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s https://t.co/fh5KflzBR0 NaN NaN NaN https://twitter.com/dog_rates/status/667517642048163840/photo/1 8 10 Dook None None None None
2269 667509364010450944 NaN NaN 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 NaN NaN NaN https://twitter.com/dog_rates/status/667509364010450944/photo/1 12 10 None None None None None
2270 667502640335572993 NaN NaN 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Say hello to Hall and Oates. Oates is winking and Hall is contemplating the artistic entropy of the universe. 11/10s https://t.co/n5Wtb5Hvsl NaN NaN NaN https://twitter.com/dog_rates/status/667502640335572993/photo/1 11 10 Hall None None None None
2271 667495797102141441 NaN NaN 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af https://t.co/5NhPV8E45i NaN NaN NaN https://twitter.com/dog_rates/status/667495797102141441/photo/1 9 10 Philippe None None None None
2272 667491009379606528 NaN NaN 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 https://t.co/ITxxcc4v9y NaN NaN NaN https://twitter.com/dog_rates/status/667491009379606528/photo/1 7 10 None None None None None
2273 667470559035432960 NaN NaN 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk NaN NaN NaN https://twitter.com/dog_rates/status/667470559035432960/photo/1 11 10 a None None None None
2274 667455448082227200 NaN NaN 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s https://t.co/uLzRi1drVK NaN NaN NaN https://twitter.com/dog_rates/status/667455448082227200/photo/1 7 10 Reese None None None None
2275 667453023279554560 NaN NaN 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa NaN NaN NaN https://twitter.com/dog_rates/status/667453023279554560/photo/1 11 10 Cupcake None None None None
2276 667443425659232256 NaN NaN 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N NaN NaN NaN https://twitter.com/dog_rates/status/667443425659232256/photo/1 6 10 None None None None None
2277 667437278097252352 NaN NaN 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx NaN NaN NaN https://twitter.com/dog_rates/status/667437278097252352/photo/1 10 10 None None None None None
2278 667435689202614272 NaN NaN 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Ermergerd 12/10 https://t.co/PQni2sjPsm NaN NaN NaN https://twitter.com/dog_rates/status/667435689202614272/photo/1 12 10 None None None None None
2279 667405339315146752 NaN NaN 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 NaN NaN NaN https://twitter.com/dog_rates/status/667405339315146752/photo/1 7 10 Biden None None None None
2280 667393430834667520 NaN NaN 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 https://t.co/A37eGLz5WS NaN NaN NaN https://twitter.com/dog_rates/status/667393430834667520/photo/1 8 10 Fwed None None None None
2281 667369227918143488 NaN NaN 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 https://t.co/LEaviT37v1 NaN NaN NaN https://twitter.com/dog_rates/status/667369227918143488/photo/1 10 10 None None None None None
2282 667211855547486208 NaN NaN 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 https://t.co/azEoGqVonH NaN NaN NaN https://twitter.com/dog_rates/status/667211855547486208/photo/1 9 10 Genevieve None None None None
2283 667200525029539841 NaN NaN 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Joshwa. He is a fuckboy supreme. He clearly relies on owner but doesn't respect them. Dreamy eyes tho 11/10 https://t.co/60xYFRATPZ NaN NaN NaN https://twitter.com/dog_rates/status/667200525029539841/photo/1 11 10 Joshwa None None None None
2284 667192066997374976 NaN NaN 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 https://t.co/QCugm5ydl6 NaN NaN NaN https://twitter.com/dog_rates/status/667192066997374976/photo/1 12 10 None None None None None
2285 667188689915760640 NaN NaN 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Quite an advanced dog here. Impressively dressed for canine. Has weapon. About to take out trash. 10/10 good dog https://t.co/8uCMwS9CbV NaN NaN NaN https://twitter.com/dog_rates/status/667188689915760640/photo/1 10 10 None None None None None
2286 667182792070062081 NaN NaN 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.co/s2yYuHabWl NaN NaN NaN https://twitter.com/dog_rates/status/667182792070062081/photo/1 10 10 Timison None None None None
2287 667177989038297088 NaN NaN 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW NaN NaN NaN https://twitter.com/dog_rates/status/667177989038297088/photo/1 8 10 a None None None None
2288 667176164155375616 NaN NaN 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable https://t.co/PZxSarAfSN NaN NaN NaN https://twitter.com/dog_rates/status/667176164155375616/photo/1 4 10 None None None None None
2289 667174963120574464 NaN NaN 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 https://t.co/fGDWgukcBs NaN NaN NaN https://twitter.com/dog_rates/status/667174963120574464/photo/1 9 10 Clarence None None None None
2290 667171260800061440 NaN NaN 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Say hello to Kenneth. He likes Reese's Puffs. 10/10 https://t.co/6RHNRsByOY NaN NaN NaN https://twitter.com/dog_rates/status/667171260800061440/photo/1 10 10 Kenneth None None None None
2291 667165590075940865 NaN NaN 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Churlie. AKA Fetty Woof. Lost eye saving a school bus full of toddlers from a tsunami. Great guy. 10/10 https://t.co/li2XYBVuAY NaN NaN NaN https://twitter.com/dog_rates/status/667165590075940865/photo/1 10 10 Churlie None None None None
2292 667160273090932737 NaN NaN 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Bradlay. He is a Ronaldinho Matsuyama mix. Can also mountain bike (wow). Loves that blue light lime. 11/10 https://t.co/DKhgkMx4N1 NaN NaN NaN https://twitter.com/dog_rates/status/667160273090932737/photo/1 11 10 Bradlay None None None None
2293 667152164079423490 NaN NaN 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Pipsy. He is a fluffball. Enjoys traveling the sea &amp; getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X NaN NaN NaN https://twitter.com/dog_rates/status/667152164079423490/photo/1 12 10 Pipsy None None None None
2294 667138269671505920 NaN NaN 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0DvHAMdA4V NaN NaN NaN https://twitter.com/dog_rates/status/667138269671505920/photo/1 10 10 None None None None None
2295 667119796878725120 NaN NaN 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Gabe. He is a southern Baklava. Gabe has always wanted to fit in with the other bananas. 10/10 fabulous https://t.co/3LZrJzg3BJ NaN NaN NaN https://twitter.com/dog_rates/status/667119796878725120/photo/1 10 10 Gabe None None None None
2296 667090893657276420 NaN NaN 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 https://t.co/Ks0jZtdIrr NaN NaN NaN https://twitter.com/dog_rates/status/667090893657276420/photo/1 7 10 Clybe None None None None
2297 667073648344346624 NaN NaN 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is Dave. He is actually just a skinny legged seal. Happy birthday Dave. 10/10 https://t.co/DPSamreuRq NaN NaN NaN https://twitter.com/dog_rates/status/667073648344346624/photo/1 10 10 Dave None None None None
2298 667070482143944705 6.670655e+17 4.196984e+09 2015-11-18 20:02:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After much debate this dog is being upgraded to 10/10. I repeat 10/10 NaN NaN NaN NaN 10 10 None None None None None
2299 667065535570550784 NaN NaN 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 https://t.co/7JdgVqDnvR NaN NaN NaN https://twitter.com/dog_rates/status/667065535570550784/photo/1 8 10 None None None None None
2300 667062181243039745 NaN NaN 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Keet. He is a Floridian Amukamara. Absolutely epic propeller hat. Pristine tongue. Nice plaid. 10/10 https://t.co/tz1lpuvXLA NaN NaN NaN https://twitter.com/dog_rates/status/667062181243039745/photo/1 10 10 Keet None None None None
2301 667044094246576128 NaN NaN 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 12/10 gimme now https://t.co/QZAnwgnOMB NaN NaN NaN https://twitter.com/dog_rates/status/667044094246576128/photo/1 12 10 None None None None None
2302 667012601033924608 NaN NaN 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Klevin. He laughs a lot. Very cool dog. 9/10 https://t.co/bATAbPNv0m NaN NaN NaN https://twitter.com/dog_rates/status/667012601033924608/photo/1 9 10 Klevin None None None None
2303 666996132027977728 NaN NaN 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Carll. He wants to be a donkey. But also a soccer star. Dreams big. 10/10 https://t.co/SVpNbhaIMk NaN NaN NaN https://twitter.com/dog_rates/status/666996132027977728/photo/1 10 10 Carll None None None None
2304 666983947667116034 NaN NaN 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a curly Ticonderoga named Pepe. No feet. Loves to jet ski. 11/10 would hug until forever https://t.co/cyDfaK8NBc NaN NaN NaN https://twitter.com/dog_rates/status/666983947667116034/photo/1 11 10 a None None None None
2305 666837028449972224 NaN NaN 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 https://t.co/xYGdBrMS9h NaN NaN NaN https://twitter.com/dog_rates/status/666837028449972224/photo/1 3 10 None None None None None
2306 666835007768551424 NaN NaN 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 &amp; 10/10 https://t.co/ZnEMHBsAs1 NaN NaN NaN https://twitter.com/dog_rates/status/666835007768551424/photo/1 10 10 None None None None None
2307 666826780179869698 NaN NaN 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 12/10 simply brilliant pup https://t.co/V6ZzG45zzG NaN NaN NaN https://twitter.com/dog_rates/status/666826780179869698/photo/1 12 10 None None None None None
2308 666817836334096384 NaN NaN 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 https://t.co/8whlkYw3mO NaN NaN NaN https://twitter.com/dog_rates/status/666817836334096384/photo/1 9 10 Jeph None None None None
2309 666804364988780544 NaN NaN 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 https://t.co/RdKbAOEpDK NaN NaN NaN https://twitter.com/dog_rates/status/666804364988780544/photo/1 8 10 Jockson None None None None
2310 666786068205871104 NaN NaN 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 https://t.co/EIn5kElY1S NaN NaN NaN https://twitter.com/dog_rates/status/666786068205871104/photo/1 2 10 None None None None None
2311 666781792255496192 NaN NaN 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa NaN NaN NaN https://twitter.com/dog_rates/status/666781792255496192/photo/1 10 10 a None None None None
2312 666776908487630848 NaN NaN 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Josep. He is a Rye Manganese mix. Can drive w eyes closed. Very irresponsible. Menace on the roadways. 5/10 https://t.co/XNGeDwrtYH NaN NaN NaN https://twitter.com/dog_rates/status/666776908487630848/photo/1 5 10 Josep None None None None
2313 666739327293083650 NaN NaN 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Lugan. He is a Bohemian Rhapsody. Very confused dog. Thinks his name is Rocky. Not amused by the snows 10/10 https://t.co/tI3uFLDHBI NaN NaN NaN https://twitter.com/dog_rates/status/666739327293083650/photo/1 10 10 Lugan None None None None
2314 666701168228331520 NaN NaN 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB NaN NaN NaN https://twitter.com/dog_rates/status/666701168228331520/photo/1 8 10 a None None None None
2315 666691418707132416 NaN NaN 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 https://t.co/bg4TqvvkuF NaN NaN NaN https://twitter.com/dog_rates/status/666691418707132416/photo/1 8 10 Christoper None None None None
2316 666649482315059201 NaN NaN 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 https://t.co/vXMKrJC81s NaN NaN NaN https://twitter.com/dog_rates/status/666649482315059201/photo/1 4 10 None None None None None
2317 666644823164719104 NaN NaN 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 https://t.co/LEkZjZxESQ NaN NaN NaN https://twitter.com/dog_rates/status/666644823164719104/photo/1 9 10 Jimothy None None None None
2318 666454714377183233 NaN NaN 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> I'll name the dogs from now on. This is Kreggory. He does parkour. 10/10 https://t.co/uPqPeXAcua NaN NaN NaN https://twitter.com/dog_rates/status/666454714377183233/photo/1 10 10 Kreggory None None None None
2319 666447344410484738 NaN NaN 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say https://t.co/kH60oka1HW NaN NaN NaN https://twitter.com/dog_rates/status/666447344410484738/photo/1 9 10 Scout None None None None
2320 666437273139982337 NaN NaN 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 https://t.co/7LtjBS0GPK NaN NaN NaN https://twitter.com/dog_rates/status/666437273139982337/photo/1 7 10 None None None None None
2321 666435652385423360 NaN NaN 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 https://t.co/GlFZPzqcEU NaN NaN NaN https://twitter.com/dog_rates/status/666435652385423360/photo/1 10 10 None None None None None
2322 666430724426358785 NaN NaN 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 https://t.co/yECbFrSArM NaN NaN NaN https://twitter.com/dog_rates/status/666430724426358785/photo/1 6 10 None None None None None
2323 666428276349472768 NaN NaN 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with https://t.co/NMQq6HIglK NaN NaN NaN https://twitter.com/dog_rates/status/666428276349472768/photo/1 7 10 None None None None None
2324 666421158376562688 NaN NaN 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> *internally screaming* 12/10 https://t.co/YMcrXC2Y6R NaN NaN NaN https://twitter.com/dog_rates/status/666421158376562688/photo/1 12 10 None None None None None
2325 666418789513326592 NaN NaN 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Walter. He is an Alaskan Terrapin. Loves outdated bandanas. One ear still working. Cool house plant. 10/10 https://t.co/qXpcwENTvn NaN NaN NaN https://twitter.com/dog_rates/status/666418789513326592/photo/1 10 10 Walter None None None None
2326 666411507551481857 NaN NaN 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t NaN NaN NaN https://twitter.com/dog_rates/status/666411507551481857/photo/1 2 10 quite None None None None
2327 666407126856765440 NaN NaN 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h NaN NaN NaN https://twitter.com/dog_rates/status/666407126856765440/photo/1 7 10 a None None None None
2328 666396247373291520 NaN NaN 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 https://t.co/Dc7b0E8qFE NaN NaN NaN https://twitter.com/dog_rates/status/666396247373291520/photo/1 9 10 None None None None None
2329 666373753744588802 NaN NaN 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Those are sunglasses and a jean jacket. 11/10 dog cool af https://t.co/uHXrPkUEyl NaN NaN NaN https://twitter.com/dog_rates/status/666373753744588802/photo/1 11 10 None None None None None
2330 666362758909284353 NaN NaN 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet https://t.co/XMD9CwjEnM NaN NaN NaN https://twitter.com/dog_rates/status/666362758909284353/photo/1 6 10 None None None None None
2331 666353288456101888 NaN NaN 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 https://t.co/tltQ5w9aUO NaN NaN NaN https://twitter.com/dog_rates/status/666353288456101888/photo/1 8 10 None None None None None
2332 666345417576210432 NaN NaN 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 https://t.co/VFKG1vxGjB NaN NaN NaN https://twitter.com/dog_rates/status/666345417576210432/photo/1 10 10 None None None None None
2333 666337882303524864 NaN NaN 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively https://t.co/QpRjllzWAL NaN NaN NaN https://twitter.com/dog_rates/status/666337882303524864/photo/1 9 10 an None None None None
2334 666293911632134144 NaN NaN 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 https://t.co/IIXis0zta0 NaN NaN NaN https://twitter.com/dog_rates/status/666293911632134144/photo/1 3 10 a None None None None
2335 666287406224695296 NaN NaN 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv NaN NaN NaN https://twitter.com/dog_rates/status/666287406224695296/photo/1 1 2 an None None None None
2336 666273097616637952 NaN NaN 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Can take selfies 11/10 https://t.co/ws2AMaNwPW NaN NaN NaN https://twitter.com/dog_rates/status/666273097616637952/photo/1 11 10 None None None None None
2337 666268910803644416 NaN NaN 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Very concerned about fellow dog trapped in computer. 10/10 https://t.co/0yxApIikpk NaN NaN NaN https://twitter.com/dog_rates/status/666268910803644416/photo/1 10 10 None None None None None
2338 666104133288665088 NaN NaN 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/Asgdc6kuLX NaN NaN NaN https://twitter.com/dog_rates/status/666104133288665088/photo/1 1 10 None None None None None
2339 666102155909144576 NaN NaN 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 https://t.co/11LvqN4WLq NaN NaN NaN https://twitter.com/dog_rates/status/666102155909144576/photo/1 11 10 None None None None None
2340 666099513787052032 NaN NaN 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 https://t.co/Ri4nMTLq5C NaN NaN NaN https://twitter.com/dog_rates/status/666099513787052032/photo/1 8 10 None None None None None
2341 666094000022159362 NaN NaN 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with https://t.co/mnioXo3IfP NaN NaN NaN https://twitter.com/dog_rates/status/666094000022159362/photo/1 9 10 None None None None None
2342 666082916733198337 NaN NaN 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof https://t.co/3RU6x0vHB7 NaN NaN NaN https://twitter.com/dog_rates/status/666082916733198337/photo/1 6 10 None None None None None
2343 666073100786774016 NaN NaN 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot https://t.co/Yk6GHE9tOY NaN NaN NaN https://twitter.com/dog_rates/status/666073100786774016/photo/1 10 10 None None None None None
2344 666071193221509120 NaN NaN 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually https://t.co/ZoL8kq2XFx NaN NaN NaN https://twitter.com/dog_rates/status/666071193221509120/photo/1 9 10 None None None None None
2345 666063827256086533 NaN NaN 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK NaN NaN NaN https://twitter.com/dog_rates/status/666063827256086533/photo/1 10 10 the None None None None
2346 666058600524156928 NaN NaN 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p NaN NaN NaN https://twitter.com/dog_rates/status/666058600524156928/photo/1 8 10 the None None None None
2347 666057090499244032 NaN NaN 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare https://t.co/yWBqbrzy8O NaN NaN NaN https://twitter.com/dog_rates/status/666057090499244032/photo/1 9 10 a None None None None
2348 666055525042405380 NaN NaN 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt NaN NaN NaN https://twitter.com/dog_rates/status/666055525042405380/photo/1 10 10 a None None None None
2349 666051853826850816 NaN NaN 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 https://t.co/v5A4vzSDdc NaN NaN NaN https://twitter.com/dog_rates/status/666051853826850816/photo/1 2 10 an None None None None
2350 666050758794694657 NaN NaN 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe NaN NaN NaN https://twitter.com/dog_rates/status/666050758794694657/photo/1 10 10 a None None None None
2351 666049248165822465 NaN NaN 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 https://t.co/4B7cOc1EDq NaN NaN NaN https://twitter.com/dog_rates/status/666049248165822465/photo/1 5 10 None None None None None
2352 666044226329800704 NaN NaN 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx NaN NaN NaN https://twitter.com/dog_rates/status/666044226329800704/photo/1 6 10 a None None None None
2353 666033412701032449 NaN NaN 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR NaN NaN NaN https://twitter.com/dog_rates/status/666033412701032449/photo/1 9 10 a None None None None
2354 666029285002620928 NaN NaN 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of https://t.co/r7mOb2m0UI NaN NaN NaN https://twitter.com/dog_rates/status/666029285002620928/photo/1 7 10 a None None None None
2355 666020888022790149 NaN NaN 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet https://t.co/BLDqew2Ijj NaN NaN NaN https://twitter.com/dog_rates/status/666020888022790149/photo/1 8 10 None None None None None
In [13]:
# info check
twitter_archive_df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2356 entries, 0 to 2355
Data columns (total 17 columns):
 #   Column                      Non-Null Count  Dtype  
---  ------                      --------------  -----  
 0   tweet_id                    2356 non-null   int64  
 1   in_reply_to_status_id       78 non-null     float64
 2   in_reply_to_user_id         78 non-null     float64
 3   timestamp                   2356 non-null   object 
 4   source                      2356 non-null   object 
 5   text                        2356 non-null   object 
 6   retweeted_status_id         181 non-null    float64
 7   retweeted_status_user_id    181 non-null    float64
 8   retweeted_status_timestamp  181 non-null    object 
 9   expanded_urls               2297 non-null   object 
 10  rating_numerator            2356 non-null   int64  
 11  rating_denominator          2356 non-null   int64  
 12  name                        2356 non-null   object 
 13  doggo                       2356 non-null   object 
 14  floofer                     2356 non-null   object 
 15  pupper                      2356 non-null   object 
 16  puppo                       2356 non-null   object 
dtypes: float64(4), int64(3), object(10)
memory usage: 313.0+ KB
In [14]:
# checking for null value (since many columns showing less value than others)
twitter_archive_df.isnull().sum()
Out[14]:
tweet_id                         0
in_reply_to_status_id         2278
in_reply_to_user_id           2278
timestamp                        0
source                           0
text                             0
retweeted_status_id           2175
retweeted_status_user_id      2175
retweeted_status_timestamp    2175
expanded_urls                   59
rating_numerator                 0
rating_denominator               0
name                             0
doggo                            0
floofer                          0
pupper                           0
puppo                            0
dtype: int64
In [15]:
twitter_archive_df.describe()
Out[15]:
tweet_id in_reply_to_status_id in_reply_to_user_id retweeted_status_id retweeted_status_user_id rating_numerator rating_denominator
count 2.356000e+03 7.800000e+01 7.800000e+01 1.810000e+02 1.810000e+02 2356.000000 2356.000000
mean 7.427716e+17 7.455079e+17 2.014171e+16 7.720400e+17 1.241698e+16 13.126486 10.455433
std 6.856705e+16 7.582492e+16 1.252797e+17 6.236928e+16 9.599254e+16 45.876648 6.745237
min 6.660209e+17 6.658147e+17 1.185634e+07 6.661041e+17 7.832140e+05 0.000000 0.000000
25% 6.783989e+17 6.757419e+17 3.086374e+08 7.186315e+17 4.196984e+09 10.000000 10.000000
50% 7.196279e+17 7.038708e+17 4.196984e+09 7.804657e+17 4.196984e+09 11.000000 10.000000
75% 7.993373e+17 8.257804e+17 4.196984e+09 8.203146e+17 4.196984e+09 12.000000 10.000000
max 8.924206e+17 8.862664e+17 8.405479e+17 8.874740e+17 7.874618e+17 1776.000000 170.000000

Quality isssues:

  • timestamp column has +0000. This should be removed
  • timestamp column has dtpye as object. It should be changed to datetime dtype.
  • source column shows the (href ..) link. The source should be exracted out of the link.
  • Dogs name column has some rows with strange names. Name's examples (an, None, 0, a, Al, my, this, all, old, infuriating, the). It will be replaced None.
  • Original tweets only. Rows with retweets and replay should be removed
  • These columns (in_reply_to_status_id, in_reply_to_user_id, retweeted_status_id, retweeted_status_user_id, retweeted_status_timestamp) related to replays and retweets, it will be removed.
  • Some dogs appeare in more than one stage e.x. (doggo and floofer). These rows will be removed.
  • Some columns have None value. It should be changed to NaN.
  • There some decimal dog rating values. We should get it from text

Tidiness

  • twitter_archive_df is should be the main Data frame. Therefore it should be merge with other
  • doggo, floofer, pupper and puppo should be represented in one column named dog_stage.

image_predictions_df

In [16]:
image_predictions_df.head()
Out[16]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 0.156665 True Shetland_sheepdog 0.061428 True
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 0.074192 True Rhodesian_ridgeback 0.072010 True
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 0.138584 True bloodhound 0.116197 True
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 0.360687 True miniature_pinscher 0.222752 True
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 0.243682 True Doberman 0.154629 True
In [17]:
image_predictions_df
Out[17]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 1.566650e-01 True Shetland_sheepdog 6.142850e-02 True
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 7.419170e-02 True Rhodesian_ridgeback 7.201000e-02 True
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 1.385840e-01 True bloodhound 1.161970e-01 True
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 3.606870e-01 True miniature_pinscher 2.227520e-01 True
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 2.436820e-01 True Doberman 1.546290e-01 True
5 666050758794694657 https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 Bernese_mountain_dog 0.651137 True English_springer 2.637880e-01 True Greater_Swiss_Mountain_dog 1.619920e-02 True
6 666051853826850816 https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 box_turtle 0.933012 False mud_turtle 4.588540e-02 False terrapin 1.788530e-02 False
7 666055525042405380 https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 chow 0.692517 True Tibetan_mastiff 5.827940e-02 True fur_coat 5.444860e-02 False
8 666057090499244032 https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 shopping_cart 0.962465 False shopping_basket 1.459380e-02 False golden_retriever 7.958960e-03 True
9 666058600524156928 https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 miniature_poodle 0.201493 True komondor 1.923050e-01 True soft-coated_wheaten_terrier 8.208610e-02 True
10 666063827256086533 https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 golden_retriever 0.775930 True Tibetan_mastiff 9.371780e-02 True Labrador_retriever 7.242660e-02 True
11 666071193221509120 https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 Gordon_setter 0.503672 True Yorkshire_terrier 1.742010e-01 True Pekinese 1.094540e-01 True
12 666073100786774016 https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 Walker_hound 0.260857 True English_foxhound 1.753820e-01 True Ibizan_hound 9.747050e-02 True
13 666082916733198337 https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 pug 0.489814 True bull_mastiff 4.047220e-01 True French_bulldog 4.895950e-02 True
14 666094000022159362 https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 bloodhound 0.195217 True German_shepherd 7.825980e-02 True malinois 7.562780e-02 True
15 666099513787052032 https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 Lhasa 0.582330 True Shih-Tzu 1.661920e-01 True Dandie_Dinmont 8.968830e-02 True
16 666102155909144576 https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 English_setter 0.298617 True Newfoundland 1.498420e-01 True borzoi 1.336490e-01 True
17 666104133288665088 https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 hen 0.965932 False cock 3.391940e-02 False partridge 5.206580e-05 False
18 666268910803644416 https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 desktop_computer 0.086502 False desk 8.554740e-02 False bookcase 7.947970e-02 False
19 666273097616637952 https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 Italian_greyhound 0.176053 True toy_terrier 1.118840e-01 True basenji 1.111520e-01 True
20 666287406224695296 https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 Maltese_dog 0.857531 True toy_poodle 6.306380e-02 True miniature_poodle 2.558060e-02 True
21 666293911632134144 https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 three-toed_sloth 0.914671 False otter 1.525000e-02 False great_grey_owl 1.320720e-02 False
22 666337882303524864 https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 ox 0.416669 False Newfoundland 2.784070e-01 True groenendael 1.026430e-01 True
23 666345417576210432 https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 golden_retriever 0.858744 True Chesapeake_Bay_retriever 5.478680e-02 True Labrador_retriever 1.424090e-02 True
24 666353288456101888 https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 malamute 0.336874 True Siberian_husky 1.476550e-01 True Eskimo_dog 9.341240e-02 True
25 666362758909284353 https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 guinea_pig 0.996496 False skunk 2.402450e-03 False hamster 4.608630e-04 False
26 666373753744588802 https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 soft-coated_wheaten_terrier 0.326467 True Afghan_hound 2.595510e-01 True briard 2.068030e-01 True
27 666396247373291520 https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 Chihuahua 0.978108 True toy_terrier 9.396970e-03 True papillon 4.576810e-03 True
28 666407126856765440 https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 black-and-tan_coonhound 0.529139 True bloodhound 2.442200e-01 True flat-coated_retriever 1.738100e-01 True
29 666411507551481857 https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 coho 0.404640 False barracouta 2.714850e-01 False gar 1.899450e-01 False
30 666418789513326592 https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 toy_terrier 0.149680 True papillon 1.482580e-01 True Chihuahua 1.428600e-01 True
31 666421158376562688 https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim_spaniel 0.906777 True cocker_spaniel 9.034640e-02 True Shih-Tzu 1.116870e-03 True
32 666428276349472768 https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 Pembroke 0.371361 True chow 2.493940e-01 True Pomeranian 2.418780e-01 True
33 666430724426358785 https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 llama 0.505184 False Irish_terrier 1.041090e-01 True dingo 6.207120e-02 False
34 666435652385423360 https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 Chesapeake_Bay_retriever 0.184130 True chain_saw 5.677530e-02 False power_drill 3.676340e-02 False
35 666437273139982337 https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 Chihuahua 0.671853 True beagle 1.246800e-01 True Saluki 4.409420e-02 True
36 666447344410484738 https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 curly-coated_retriever 0.322084 True giant_schnauzer 2.879550e-01 True Labrador_retriever 1.663310e-01 True
37 666454714377183233 https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 dalmatian 0.278954 True Labrador_retriever 2.376120e-01 True Great_Pyrenees 1.711060e-01 True
38 666644823164719104 https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 Ibizan_hound 0.044333 True Pembroke 4.320930e-02 True West_Highland_white_terrier 3.890560e-02 True
39 666649482315059201 https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 Border_collie 0.447803 True English_springer 1.704970e-01 True collie 1.392060e-01 True
40 666691418707132416 https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 German_shepherd 0.975401 True beagle 8.687270e-03 True bloodhound 5.394040e-03 True
41 666701168228331520 https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 Labrador_retriever 0.887707 True Chihuahua 2.930700e-02 True French_bulldog 2.075630e-02 True
42 666739327293083650 https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 miniature_poodle 0.546933 True cocker_spaniel 1.652550e-01 True toy_poodle 9.595890e-02 True
43 666776908487630848 https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 seat_belt 0.375057 False miniature_pinscher 1.671750e-01 True Chihuahua 8.695060e-02 True
44 666781792255496192 https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 Italian_greyhound 0.618316 True Weimaraner 1.513630e-01 True vizsla 8.598910e-02 True
45 666786068205871104 https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 snail 0.999888 False slug 5.514170e-05 False acorn 2.625800e-05 False
46 666804364988780544 https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 English_setter 0.328792 True Brittany_spaniel 2.835450e-01 True Ibizan_hound 5.746150e-02 True
47 666817836334096384 https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 miniature_schnauzer 0.496953 True standard_schnauzer 2.852760e-01 True giant_schnauzer 7.376370e-02 True
48 666826780179869698 https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 Maltese_dog 0.359383 True teddy 1.487590e-01 False West_Highland_white_terrier 1.060070e-01 True
49 666835007768551424 https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 Airedale 0.448459 True toy_poodle 1.240300e-01 True teddy 1.101830e-01 False
50 666837028449972224 https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 triceratops 0.442113 False armadillo 1.140710e-01 False common_iguana 4.325530e-02 False
51 666983947667116034 https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 swab 0.589446 False chain_saw 1.901420e-01 False wig 3.450970e-02 False
52 666996132027977728 https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 hay 0.507637 False Rottweiler 6.248990e-02 True water_buffalo 4.842470e-02 False
53 667012601033924608 https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 hyena 0.987230 False African_hunting_dog 1.260080e-02 False coyote 5.735010e-05 False
54 667044094246576128 https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 golden_retriever 0.765266 True Labrador_retriever 2.066940e-01 True seat_belt 1.066690e-02 False
55 667062181243039745 https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 Chesapeake_Bay_retriever 0.825678 True vizsla 9.099800e-02 True kelpie 2.295620e-02 True
56 667065535570550784 https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 jigsaw_puzzle 0.560001 False doormat 1.032590e-01 False space_heater 4.256800e-02 False
57 667073648344346624 https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 Chihuahua 0.483682 True pug 9.249390e-02 True Brabancon_griffon 5.749540e-02 True
58 667090893657276420 https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 Chihuahua 0.959514 True Italian_greyhound 5.370150e-03 True Pomeranian 2.641330e-03 True
59 667119796878725120 https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 Pembroke 0.741563 True Chihuahua 5.786590e-02 True toy_poodle 3.912510e-02 True
60 667138269671505920 https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 West_Highland_white_terrier 0.747713 True Samoyed 2.436290e-01 True toy_poodle 1.803970e-03 True
61 667152164079423490 https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 toy_poodle 0.535411 True Pomeranian 8.754400e-02 True miniature_poodle 6.205000e-02 True
62 667160273090932737 https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 golden_retriever 0.471351 True miniature_poodle 9.199210e-02 True standard_poodle 8.738540e-02 True
63 667165590075940865 https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 miniature_pinscher 0.140173 True Rottweiler 1.340940e-01 True beagle 8.189980e-02 True
64 667171260800061440 https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 giant_schnauzer 0.841265 True Lakeland_terrier 5.274420e-02 True Irish_water_spaniel 3.440170e-02 True
65 667174963120574464 https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 toy_poodle 0.266437 True Chihuahua 2.432230e-01 True bluetick 7.280630e-02 True
66 667176164155375616 https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 soft-coated_wheaten_terrier 0.318981 True Lakeland_terrier 2.152180e-01 True toy_poodle 1.060140e-01 True
67 667177989038297088 https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 vizsla 0.259249 True Chesapeake_Bay_retriever 1.762930e-01 True Weimaraner 1.123690e-01 True
68 667182792070062081 https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 golden_retriever 0.949892 True Irish_setter 1.056380e-02 True Chesapeake_Bay_retriever 5.821410e-03 True
69 667188689915760640 https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 vacuum 0.335830 False swab 2.652780e-01 False toilet_tissue 1.407030e-01 False
70 667192066997374976 https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 Rottweiler 0.283640 True miniature_pinscher 1.481120e-01 True black-and-tan_coonhound 9.558480e-02 True
71 667200525029539841 https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 Siberian_husky 0.694904 True malamute 2.320060e-01 True Eskimo_dog 5.063510e-02 True
72 667211855547486208 https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 golden_retriever 0.462556 True Labrador_retriever 4.549370e-01 True kuvasz 2.419330e-02 True
73 667369227918143488 https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 teddy 0.709545 False bath_towel 1.272850e-01 False Christmas_stocking 2.856750e-02 False
74 667393430834667520 https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 papillon 0.557009 True Border_collie 2.719630e-01 True collie 7.347290e-02 True
75 667405339315146752 https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 Saint_Bernard 0.381377 True Leonberg 1.279980e-01 True golden_retriever 6.935680e-02 True
76 667435689202614272 https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 Rottweiler 0.999091 True miniature_pinscher 4.503550e-04 True black-and-tan_coonhound 1.571400e-04 True
77 667437278097252352 https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 porcupine 0.989154 False bath_towel 6.300490e-03 False badger 9.663400e-04 False
78 667443425659232256 https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 6.917770e-03 False hen 5.255170e-03 False
79 667453023279554560 https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 Labrador_retriever 0.825670 True French_bulldog 5.663940e-02 True Staffordshire_bullterrier 5.401840e-02 True
80 667455448082227200 https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 Tibetan_terrier 0.676376 True Irish_terrier 5.493340e-02 True Yorkshire_terrier 4.057550e-02 True
81 667470559035432960 https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 toy_poodle 0.304175 True pug 2.234270e-01 True Lakeland_terrier 7.331650e-02 True
82 667491009379606528 https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 borzoi 0.852088 True ice_bear 1.322640e-01 False weasel 5.729980e-03 False
83 667495797102141441 https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 Chihuahua 0.143957 True Christmas_stocking 1.186510e-01 False ski_mask 9.248170e-02 False
84 667502640335572993 https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 Labrador_retriever 0.996709 True golden_retriever 1.688210e-03 True beagle 7.116670e-04 True
85 667509364010450944 https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True
86 667517642048163840 https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 Italian_greyhound 0.125176 True standard_poodle 8.457150e-02 True cocker_spaniel 8.134690e-02 True
87 667524857454854144 https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 hare 0.447893 False dhole 9.243530e-02 False Chesapeake_Bay_retriever 8.812240e-02 True
88 667530908589760512 https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 golden_retriever 0.633037 True kuvasz 1.463910e-01 True Labrador_retriever 4.618370e-02 True
89 667534815156183040 https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 Pembroke 0.435254 True Cardigan 3.074070e-01 True cocker_spaniel 3.315830e-02 True
90 667538891197542400 https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 Yorkshire_terrier 0.618957 True silky_terrier 3.003130e-01 True Australian_terrier 5.341200e-02 True
91 667544320556335104 https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 Pomeranian 0.412893 True Pembroke 3.129580e-01 True Chihuahua 7.196040e-02 True
92 667546741521195010 https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 toy_poodle 0.787424 True miniature_poodle 2.022250e-01 True teddy 4.047220e-03 False
93 667549055577362432 https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 electric_fan 0.984377 False spotlight 7.736710e-03 False lampshade 1.901230e-03 False
94 667550882905632768 https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 web_site 0.998258 False dishwasher 2.010840e-04 False oscilloscope 1.417360e-04 False
95 667550904950915073 https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 web_site 0.999335 False vizsla 8.106320e-05 True collie 6.915900e-05 True
96 667724302356258817 https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 ibex 0.619098 False bighorn 1.251190e-01 False ram 7.467320e-02 False
97 667728196545200128 https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 kuvasz 0.360159 True golden_retriever 2.937440e-01 True Labrador_retriever 2.706730e-01 True
98 667766675769573376 https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 fire_engine 0.883493 False tow_truck 7.473390e-02 False jeep 1.277260e-02 False
99 667773195014021121 https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 West_Highland_white_terrier 0.360465 True pug 9.349410e-02 True ice_bear 6.903820e-02 False
100 667782464991965184 https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 lorikeet 0.466149 False hummingbird 8.301100e-02 False African_grey 5.424740e-02 False
101 667793409583771648 https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 dalmatian 0.535073 True English_setter 4.512190e-01 True Great_Dane 8.163610e-03 True
102 667801013445750784 https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 flat-coated_retriever 0.508392 True Chesapeake_Bay_retriever 2.622390e-01 True curly-coated_retriever 4.891980e-02 True
103 667806454573760512 https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 toyshop 0.253089 False Chihuahua 1.871550e-01 True Brabancon_griffon 1.127990e-01 True
104 667832474953625600 https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 miniature_pinscher 0.214200 True bath_towel 1.467890e-01 False Chihuahua 1.041520e-01 True
105 667861340749471744 https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 malamute 0.967275 True Siberian_husky 1.616750e-02 True Eskimo_dog 1.127740e-02 True
106 667866724293877760 https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 jigsaw_puzzle 1.000000 False prayer_rug 1.011300e-08 False doormat 1.740170e-10 False
107 667873844930215936 https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 common_iguana 0.999647 False frilled_lizard 1.811500e-04 False African_chameleon 1.283570e-04 False
108 667878741721415682 https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 seat_belt 0.200373 False miniature_pinscher 1.060030e-01 True schipperke 1.047330e-01 True
109 667885044254572545 https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 malamute 0.088530 True golden_retriever 8.749860e-02 True muzzle 7.500770e-02 False
110 667886921285246976 https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 Pomeranian 0.800432 True Pekinese 1.684450e-01 True Chihuahua 8.949520e-03 True
111 667902449697558528 https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 Norwegian_elkhound 0.298881 True malamute 2.794790e-01 True Eskimo_dog 1.984280e-01 True
112 667911425562669056 https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 frilled_lizard 0.257695 False ox 2.351600e-01 False triceratops 8.531690e-02 False
113 667915453470232577 https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 leatherback_turtle 0.452517 False boxer 1.966550e-01 True terrapin 1.609830e-01 False
114 667924896115245057 https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 Labrador_retriever 0.209051 True hog 2.039800e-01 False Newfoundland 1.659140e-01 True
115 667937095915278337 https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 hamster 0.172078 False guinea_pig 9.492420e-02 False Band_Aid 5.999520e-02 False
116 668113020489474048 https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 Pembroke 0.548896 True Cardigan 1.911010e-01 True collie 5.981410e-02 True
117 668142349051129856 https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 Angora 0.918834 False hen 3.779340e-02 False wood_rabbit 1.101490e-02 False
118 668154635664932864 https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 Arctic_fox 0.473584 False wallaby 2.614110e-01 False white_wolf 8.094780e-02 False
119 668171859951755264 https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 Chihuahua 0.664834 True cowboy_boot 6.034300e-02 False giant_panda 5.983750e-02 False
120 668190681446379520 https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 Blenheim_spaniel 0.958402 True cocker_spaniel 2.676430e-02 True Welsh_springer_spaniel 7.789910e-03 True
121 668204964695683073 https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 Labrador_retriever 0.655180 True golden_retriever 1.078840e-01 True Chesapeake_Bay_retriever 6.583470e-02 True
122 668221241640230912 https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 chow 0.395101 True golden_retriever 3.721150e-01 True Labrador_retriever 1.487850e-01 True
123 668226093875376128 https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 trombone 0.390339 False cornet 3.141490e-01 False French_horn 2.551820e-01 False
124 668237644992782336 https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 chow 0.809320 True minivan 7.131070e-02 False Pekinese 3.786960e-02 True
125 668248472370458624 https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 Chihuahua 0.734547 True miniature_pinscher 6.829440e-02 True toy_terrier 4.636710e-02 True
126 668256321989451776 https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 canoe 0.407683 False paddle 1.155500e-01 False Pembroke 9.442940e-02 True
127 668268907921326080 https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 Pembroke 0.484830 True Cardigan 4.253030e-01 True basenji 1.475350e-02 True
128 668274247790391296 https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 soft-coated_wheaten_terrier 0.406374 True Lakeland_terrier 2.638540e-01 True toy_poodle 1.508440e-01 True
129 668286279830867968 https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 golden_retriever 0.215944 True basset 1.892140e-01 True Cardigan 1.130100e-01 True
130 668291999406125056 https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 web_site 0.995535 False skunk 1.363490e-03 False badger 6.856500e-04 False
131 668297328638447616 https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 king_penguin 0.606747 False ice_bear 2.642210e-01 False Eskimo_dog 3.278380e-02 True
132 668466899341221888 https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 shopping_basket 0.398361 False hamper 3.632220e-01 False bassinet 8.417350e-02 False
133 668480044826800133 https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 Arctic_fox 0.119243 False Labrador_retriever 9.996480e-02 True pug 8.671650e-02 True
134 668484198282485761 https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 standard_poodle 0.587372 True Bedlington_terrier 1.824110e-01 True Afghan_hound 4.096800e-02 True
135 668496999348633600 https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 Staffordshire_bullterrier 0.412879 True miniature_pinscher 1.614880e-01 True American_Staffordshire_terrier 1.124950e-01 True
136 668507509523615744 https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 basenji 0.055379 True Shetland_sheepdog 5.432210e-02 True whippet 5.191340e-02 True
137 668528771708952576 https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 Labrador_retriever 0.195835 True kuvasz 1.216070e-01 True English_setter 8.146440e-02 True
138 668537837512433665 https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 Lakeland_terrier 0.372988 True toy_poodle 2.504450e-01 True Chihuahua 1.897370e-01 True
139 668542336805281792 https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 American_Staffordshire_terrier 0.267695 True French_bulldog 2.540500e-01 True Staffordshire_bullterrier 2.123810e-01 True
140 668544745690562560 https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 bearskin 0.427870 False bow 2.588580e-01 False panpipe 2.156260e-02 False
141 668567822092664832 https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 Shih-Tzu 0.985649 True Lhasa 7.078320e-03 True Pekinese 3.053230e-03 True
142 668614819948453888 https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 bustard 0.380772 False pelican 1.005540e-01 False crane 8.471350e-02 False
143 668620235289837568 https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 crash_helmet 0.757942 False toaster 3.749680e-02 False mouse 2.727090e-02 False
144 668623201287675904 https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 9.137190e-02 True titi 6.732550e-02 False
145 668625577880875008 https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 ox 0.071536 False groenendael 5.445480e-02 True Angora 4.502800e-02 False
146 668627278264475648 https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 French_bulldog 0.965403 True pug 8.603810e-03 True Boston_bull 8.003560e-03 True
147 668631377374486528 https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 miniature_schnauzer 0.904549 True Australian_terrier 2.252940e-02 True silky_terrier 1.524320e-02 True
148 668633411083464705 https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 Pekinese 0.589011 True Shih-Tzu 3.909870e-01 True Japanese_spaniel 3.310350e-03 True
149 668636665813057536 https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 komondor 0.999956 True llama 4.309810e-05 False ram 2.160900e-07 False
150 668641109086707712 https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 vacuum 0.432594 False pug 1.463110e-01 True toilet_tissue 2.450030e-02 False
151 668643542311546881 https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 common_iguana 0.483972 False frilled_lizard 1.113770e-01 False sandbar 7.898340e-02 False
152 668645506898350081 https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 ski_mask 0.302854 False knee_pad 9.688120e-02 False balance_beam 8.407560e-02 False
153 668655139528511488 https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 beagle 0.319110 True Italian_greyhound 1.033380e-01 True basenji 9.193000e-02 True
154 668779399630725120 https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 Chesapeake_Bay_retriever 0.285508 True Weimaraner 1.468320e-01 True black-footed_ferret 6.086480e-02 False
155 668815180734689280 https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 redbone 0.461172 True Italian_greyhound 2.707330e-01 True miniature_pinscher 1.097520e-01 True
156 668826086256599040 https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 malinois 0.640185 True Irish_terrier 1.537000e-01 True Rhodesian_ridgeback 6.845650e-02 True
157 668852170888998912 https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 golden_retriever 0.903529 True Tibetan_mastiff 4.149700e-02 True kuvasz 2.250050e-02 True
158 668872652652679168 https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 teddy 0.413379 False pillow 3.256230e-01 False miniature_schnauzer 3.553660e-02 True
159 668892474547511297 https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 kelpie 0.421979 True collie 2.270600e-01 True Cardigan 1.682110e-01 True
160 668902994700836864 https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 Brittany_spaniel 0.828425 True Ibizan_hound 4.308200e-02 True Blenheim_spaniel 2.800360e-02 True
161 668932921458302977 https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 standard_poodle 0.237638 True Old_English_sheepdog 1.955730e-01 True toy_poodle 1.446580e-01 True
162 668955713004314625 https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 cocker_spaniel 0.367492 True Lakeland_terrier 2.726210e-01 True soft-coated_wheaten_terrier 6.700630e-02 True
163 668960084974809088 https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 shower_curtain 0.226309 False Chesapeake_Bay_retriever 1.658780e-01 True bathtub 5.672610e-02 False
164 668975677807423489 https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 basset 0.605437 True Welsh_springer_spaniel 1.847830e-01 True Saint_Bernard 1.162990e-01 True
165 668979806671884288 https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 golden_retriever 0.608537 True Irish_setter 9.707800e-02 True redbone 7.602220e-02 True
166 668981893510119424 https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 jellyfish 0.447246 False coral_reef 2.386250e-01 False goldfish 4.022690e-02 False
167 668986018524233728 https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 doormat 0.976103 False Chihuahua 5.639720e-03 True Norfolk_terrier 3.912650e-03 True
168 668988183816871936 https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 Arabian_camel 0.999614 False bison 2.280900e-04 False llama 6.717870e-05 False
169 668989615043424256 https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 pug 0.917326 True waffle_iron 1.491750e-02 False Chihuahua 1.352440e-02 True
170 668992363537309700 https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 lynx 0.287506 False tabby 2.060480e-01 False koala 8.141930e-02 False
171 668994913074286592 https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 hog 0.113789 False English_springer 8.976330e-02 True French_bulldog 8.218640e-02 True
172 669000397445533696 https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 Pembroke 0.822940 True Cardigan 1.770350e-01 True basenji 2.335260e-05 True
173 669006782128353280 https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 Chihuahua 0.127178 True Italian_greyhound 5.421470e-02 True pillow 4.859160e-02 False
174 669015743032369152 https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 comic_book 0.275927 False bib 1.735160e-01 False jersey 7.391100e-02 False
175 669037058363662336 https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 Chihuahua 0.803528 True Pomeranian 5.387110e-02 True chow 3.225740e-02 True
176 669203728096960512 https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 pug 0.910452 True French_bulldog 5.508960e-02 True Chihuahua 1.489660e-02 True
177 669214165781868544 https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 minivan 0.435396 False police_van 3.101430e-01 False minibus 6.820100e-02 False
178 669216679721873412 https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 golden_retriever 0.992758 True Irish_setter 3.379040e-03 True Saluki 1.229630e-03 True
179 669324657376567296 https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 seashore 0.201659 False Cardigan 1.315440e-01 True sandbar 1.014300e-01 False
180 669327207240699904 https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 golden_retriever 0.919584 True Labrador_retriever 4.966950e-02 True kuvasz 1.021610e-02 True
181 669328503091937280 https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 Siberian_husky 0.424202 True Eskimo_dog 2.376600e-01 True malamute 5.257170e-02 True
182 669351434509529089 https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 cuirass 0.756829 False breastplate 2.335200e-01 False bulletproof_vest 3.811880e-03 False
183 669353438988365824 https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 teddy 0.379656 False Pembroke 2.123430e-01 True chow 9.699530e-02 True
184 669354382627049472 https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 Chihuahua 0.973990 True French_bulldog 1.083200e-02 True Pekinese 2.098650e-03 True
185 669359674819481600 https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 Labrador_retriever 0.367818 True German_short-haired_pointer 2.806420e-01 True Chesapeake_Bay_retriever 1.842460e-01 True
186 669363888236994561 https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 golden_retriever 0.539004 True Irish_setter 4.065500e-01 True cocker_spaniel 4.148440e-02 True
187 669367896104181761 https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 basset 0.749394 True beagle 1.335790e-01 True Welsh_springer_spaniel 3.019840e-02 True
188 669371483794317312 https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 Brabancon_griffon 0.483268 True miniature_pinscher 3.074650e-01 True redbone 7.052380e-02 True
189 669375718304980992 https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 Airedale 0.168762 True Norfolk_terrier 1.074790e-01 True Lakeland_terrier 9.784590e-02 True
190 669393256313184256 https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 cocker_spaniel 0.359843 True Blenheim_spaniel 1.395190e-01 True toy_poodle 1.327460e-01 True
191 669564461267722241 https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 toy_poodle 0.623685 True miniature_poodle 2.599200e-01 True standard_poodle 8.252970e-02 True
192 669567591774625800 https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 Chihuahua 0.980511 True toy_terrier 9.166440e-03 True miniature_pinscher 2.658510e-03 True
193 669571471778410496 https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 minivan 0.873488 False pickup 4.125930e-02 False beach_wagon 1.540050e-02 False
194 669573570759163904 https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 West_Highland_white_terrier 0.946828 True miniature_schnauzer 2.234360e-02 True cairn 9.461660e-03 True
195 669583744538451968 https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 candle 0.174315 False lampshade 1.204070e-01 False plunger 7.209940e-02 False
196 669597912108789760 https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 Eskimo_dog 0.595665 True Siberian_husky 2.144740e-01 True white_wolf 1.472350e-01 False
197 669603084620980224 https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 Maltese_dog 0.659619 True Tibetan_terrier 1.935390e-01 True Shih-Tzu 3.932710e-02 True
198 669625907762618368 https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 seat_belt 0.874502 False golden_retriever 5.540810e-02 True Labrador_retriever 2.685430e-02 True
199 669661792646373376 https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 weasel 0.262802 False Siamese_cat 1.482630e-01 False hamster 1.163740e-01 False
200 669680153564442624 https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 dalmatian 0.141257 True borzoi 1.377440e-01 True Labrador_retriever 1.037920e-01 True
201 669682095984410625 https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 Christmas_stocking 0.188397 False studio_couch 8.688670e-02 False bookcase 8.259860e-02 False
202 669683899023405056 https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 Pomeranian 0.998275 True Chihuahua 6.054760e-04 True Pekinese 5.156880e-04 True
203 669749430875258880 https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 washbasin 0.245794 False toilet_seat 1.094200e-01 False paper_towel 1.056640e-01 False
204 669753178989142016 https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 Pembroke 0.858494 True hamster 2.631880e-02 False Shetland_sheepdog 2.240520e-02 True
205 669923323644657664 https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 car_mirror 0.343063 False seat_belt 1.102890e-01 False wing 8.014850e-02 False
206 669926384437997569 https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 Pomeranian 0.984231 True keeshond 1.023110e-02 True papillon 2.218970e-03 True
207 669942763794931712 https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 vizsla 0.743216 True redbone 2.172820e-01 True Rhodesian_ridgeback 2.847350e-02 True
208 669970042633789440 https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 miniature_pinscher 0.734744 True Rottweiler 1.310660e-01 True Doberman 8.150940e-02 True
209 669972011175813120 https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 teddy 0.953071 False koala 7.026720e-03 False fur_coat 5.368170e-03 False
210 669993076832759809 https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 piggy_bank 0.176320 False hair_spray 9.748700e-02 False toy_poodle 8.650160e-02 True
211 670003130994700288 https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 beagle 0.375313 True Saint_Bernard 1.749110e-01 True English_foxhound 1.158880e-01 True
212 670037189829525505 https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 pot 0.273767 False tray 9.288840e-02 False doormat 5.072790e-02 False
213 670040295598354432 https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 web_site 0.901552 False borzoi 2.665960e-02 True Chihuahua 1.243760e-02 True
214 670046952931721218 https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 Blenheim_spaniel 0.998335 True beagle 6.472890e-04 True Brittany_spaniel 3.918660e-04 True
215 670055038660800512 https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 snail 0.563631 False slug 2.966490e-01 False bolete 3.183920e-02 False
216 670061506722140161 https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 Italian_greyhound 0.329339 True American_Staffordshire_terrier 3.052940e-01 True whippet 1.116860e-01 True
217 670069087419133954 https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 boathouse 0.313829 False birdhouse 1.383310e-01 False ashcan 4.567320e-02 False
218 670073503555706880 https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 malamute 0.601886 True Siberian_husky 3.401060e-01 True Eskimo_dog 5.004130e-02 True
219 670079681849372674 https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 mud_turtle 0.157477 False terrapin 1.318460e-01 False box_turtle 6.067820e-02 False
220 670086499208155136 https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 German_short-haired_pointer 0.273492 True Staffordshire_bullterrier 1.329440e-01 True bluetick 1.245620e-01 True
221 670093938074779648 https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 toy_poodle 0.383346 True miniature_poodle 1.536780e-01 True chow 1.385430e-01 True
222 670290420111441920 https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 Chihuahua 0.368876 True Pomeranian 2.821020e-01 True papillon 1.787950e-01 True
223 670303360680108032 https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 Shetland_sheepdog 0.380278 True Cardigan 3.428060e-01 True guinea_pig 1.562490e-01 False
224 670319130621435904 https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True
225 670338931251150849 https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 cairn 0.245033 True West_Highland_white_terrier 1.377090e-01 True miniature_schnauzer 8.917250e-02 True
226 670361874861563904 https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 platypus 0.974075 False spotted_salamander 1.106760e-02 False bison 3.896910e-03 False
227 670374371102445568 https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 English_springer 0.974936 True English_setter 1.166130e-02 True cocker_spaniel 2.688990e-03 True
228 670385711116361728 https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 whippet 0.178027 True Chesapeake_Bay_retriever 1.059690e-01 True beagle 7.871970e-02 True
229 670403879788544000 https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 pug 0.802223 True French_bulldog 1.725570e-01 True bull_mastiff 7.162800e-03 True
230 670408998013820928 https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 ping-pong_ball 0.999945 False tennis_ball 1.763430e-05 False racket 1.470730e-05 False
231 670411370698022913 https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 Maltese_dog 0.584397 True miniature_schnauzer 6.420080e-02 True toy_poodle 6.086770e-02 True
232 670417414769758208 https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 sea_urchin 0.493257 False porcupine 4.605650e-01 False cardoon 8.145870e-03 False
233 670420569653809152 https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 bow_tie 0.268759 False cardigan 1.539570e-01 False wig 7.229490e-02 False
234 670421925039075328 https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 Chihuahua 0.275793 True corn 7.359580e-02 False bolete 5.490510e-02 False
235 670427002554466305 https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 seat_belt 0.952258 False toy_terrier 3.887160e-02 True beagle 3.226440e-03 True
236 670428280563085312 https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 chow 0.335269 True golden_retriever 3.058500e-01 True Tibetan_mastiff 6.332530e-02 True
237 670433248821026816 https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 window_shade 0.583427 False giant_schnauzer 6.221480e-02 True window_screen 3.994100e-02 False
238 670434127938719744 https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 jack-o'-lantern 0.919140 False Chesapeake_Bay_retriever 2.735100e-02 True Labrador_retriever 2.008090e-02 True
239 670435821946826752 https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 sorrel 0.460370 False basenji 1.357670e-01 True Cardigan 9.917430e-02 True
240 670442337873600512 https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 Sussex_spaniel 0.403552 True otterhound 2.563020e-01 True Irish_terrier 1.873150e-01 True
241 670444955656130560 https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True
242 670449342516494336 https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 peacock 0.999924 False European_gallinule 2.987300e-05 False agama 2.150760e-05 False
243 670452855871037440 https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 Arctic_fox 0.188174 False indri 1.235840e-01 False malamute 8.037950e-02 True
244 670465786746662913 https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 axolotl 0.611558 False tailed_frog 1.864840e-01 False common_newt 7.869400e-02 False
245 670468609693655041 https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 minivan 0.730152 False beach_wagon 7.866140e-02 False car_wheel 6.434580e-02 False
246 670474236058800128 https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 wool 0.070076 False siamang 6.253600e-02 False gorilla 5.889360e-02 False
247 670668383499735048 https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 banana 0.107317 False orange 9.966220e-02 False bagel 8.903260e-02 False
248 670676092097810432 https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 Dandie_Dinmont 0.676102 True West_Highland_white_terrier 4.082560e-02 True clumber 3.953330e-02 True
249 670679630144274432 https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 Ibizan_hound 0.342734 True Brittany_spaniel 2.290650e-01 True Chihuahua 1.040290e-01 True
250 670691627984359425 https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg 1 Shetland_sheepdog 0.071124 True home_theater 6.839780e-02 False American_Staffordshire_terrier 6.696390e-02 True
251 670704688707301377 https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg 1 Norwich_terrier 0.419838 True cairn 3.518760e-01 True Norfolk_terrier 5.109370e-02 True
252 670717338665226240 https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg 1 Pomeranian 0.368161 True Pekinese 3.509730e-01 True golden_retriever 1.149020e-01 True
253 670727704916926465 https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg 1 wood_rabbit 0.368562 False tabby 3.096750e-01 False Egyptian_cat 1.549140e-01 False
254 670733412878163972 https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg 1 dhole 0.350416 False hare 2.366610e-01 False wood_rabbit 9.113280e-02 False
255 670755717859713024 https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg 1 keeshond 0.994065 True Norwegian_elkhound 1.827480e-03 True cairn 1.821310e-03 True
256 670764103623966721 https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg 1 Norfolk_terrier 0.172850 True golden_retriever 7.270220e-02 True television 3.749420e-02 False
257 670778058496974848 https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg 1 pug 0.776612 True Brabancon_griffon 1.120320e-01 True boxer 3.905140e-02 True
258 670780561024270336 https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg 1 Labrador_retriever 0.244889 True American_black_bear 5.699350e-02 False brown_bear 5.399260e-02 False
259 670782429121134593 https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg 1 Chihuahua 0.952963 True French_bulldog 3.657470e-02 True Boston_bull 1.977400e-03 True
260 670783437142401025 https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg 1 lacewing 0.381955 False sulphur_butterfly 1.068100e-01 False leafhopper 6.834690e-02 False
261 670786190031921152 https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg 1 dingo 0.777124 False Pembroke 1.274380e-01 True Cardigan 2.400660e-02 True
262 670789397210615808 https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg 1 beagle 0.295966 True basset 1.435270e-01 True bluetick 1.389920e-01 True
263 670792680469889025 https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg 1 brown_bear 0.882426 False toy_poodle 3.135500e-02 True miniature_poodle 2.574340e-02 True
264 670797304698376195 https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg 1 Pembroke 0.472197 True beagle 9.093800e-02 True German_shepherd 6.436600e-02 True
265 670803562457407488 https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg 1 basenji 0.344101 True Ibizan_hound 2.102820e-01 True toy_terrier 1.962790e-01 True
266 670804601705242624 https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg 1 Pomeranian 0.868560 True Pekinese 9.012920e-02 True chow 2.172210e-02 True
267 670807719151067136 https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg 1 Old_English_sheepdog 0.958035 True Sealyham_terrier 1.389220e-02 True Border_collie 4.601140e-03 True
268 670811965569282048 https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg 1 basset 0.994090 True Walker_hound 3.972680e-03 True beagle 1.406190e-03 True
269 670815497391357952 https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg 1 American_Staffordshire_terrier 0.919714 True Staffordshire_bullterrier 7.343020e-02 True bull_mastiff 9.056790e-04 True
270 670822709593571328 https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg 1 web_site 0.993887 False Chihuahua 1.251520e-03 True menu 5.987510e-04 False
271 670823764196741120 https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg 1 Labrador_retriever 0.947453 True German_short-haired_pointer 1.700060e-02 True Weimaraner 1.543210e-02 True
272 670826280409919488 https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg 1 scorpion 0.927956 False tarantula 2.163100e-02 False wolf_spider 1.483750e-02 False
273 670832455012716544 https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg 1 malinois 0.317607 True Norwegian_elkhound 2.749010e-01 True bathing_cap 1.146430e-01 False
274 670833812859932673 https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg 1 Pekinese 0.609853 True Persian_cat 2.654420e-01 False Japanese_spaniel 2.746040e-02 True
275 670838202509447168 https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg 1 flamingo 0.992710 False coral_fungus 3.490810e-03 False stinkhorn 1.858950e-03 False
276 670840546554966016 https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg 1 Shih-Tzu 0.963622 True Lhasa 1.601670e-02 True guinea_pig 7.931920e-03 False
277 670842764863651840 https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg 1 microphone 0.096063 False accordion 9.407470e-02 False drumstick 6.111280e-02 False
278 670995969505435648 https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg 1 redbone 0.866221 True beagle 6.119400e-02 True Rhodesian_ridgeback 2.428450e-02 True
279 671109016219725825 https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg 1 basenji 0.855959 True beagle 3.672310e-02 True toy_terrier 2.925780e-02 True
280 671115716440031232 https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg 1 malinois 0.406341 True kelpie 1.433660e-01 True dingo 1.298020e-01 False
281 671122204919246848 https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg 1 goose 0.351957 False Chihuahua 1.012280e-01 True hen 6.581760e-02 False
282 671134062904504320 https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg 1 Shih-Tzu 0.180380 True golden_retriever 1.801940e-01 True Labrador_retriever 1.736560e-01 True
283 671138694582165504 https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg 1 Samoyed 0.587342 True Great_Pyrenees 2.689520e-01 True Pekinese 9.052750e-02 True
284 671141549288370177 https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg 1 guinea_pig 0.387728 False wood_rabbit 1.716810e-01 False borzoi 7.535770e-02 True
285 671147085991960577 https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg 1 Yorkshire_terrier 0.467202 True cairn 4.401220e-01 True silky_terrier 5.869010e-02 True
286 671151324042559489 https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg 1 Rottweiler 0.781201 True black-and-tan_coonhound 6.120650e-02 True kelpie 4.885570e-02 True
287 671154572044468225 https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg 1 Labrador_retriever 0.495047 True Chesapeake_Bay_retriever 3.501880e-01 True golden_retriever 1.424000e-01 True
288 671159727754231808 https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg 1 pitcher 0.117446 False sunglasses 6.248650e-02 False mask 5.951670e-02 False
289 671163268581498880 https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg 1 African_hunting_dog 0.733025 False plow 1.193770e-01 False Scottish_deerhound 2.698290e-02 True
290 671166507850801152 https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg 1 refrigerator 0.829772 False toilet_seat 3.008330e-02 False shower_curtain 1.546070e-02 False
291 671182547775299584 https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg 1 Rottweiler 0.331179 True kelpie 2.186010e-01 True Appenzeller 1.825200e-01 True
292 671186162933985280 https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg 1 Chihuahua 0.319106 True whippet 1.691340e-01 True toy_terrier 1.258150e-01 True
293 671347597085433856 https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg 1 picket_fence 0.382918 False rain_barrel 1.088090e-01 False plastic_bag 3.887820e-02 False
294 671355857343524864 https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg 1 miniature_poodle 0.313811 True toy_poodle 1.655850e-01 True Irish_terrier 5.609410e-02 True
295 671357843010908160 https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg 1 Italian_greyhound 0.831757 True toy_terrier 4.330580e-02 True Chihuahua 3.677300e-02 True
296 671362598324076544 https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg 1 tub 0.393616 False bathtub 3.835220e-01 False swimming_trunks 7.730080e-02 False
297 671390180817915904 https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg 1 zebra 0.997673 False tiger 8.372680e-04 False prairie_chicken 5.745670e-04 False
298 671485057807351808 https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg 1 Samoyed 0.627901 True Great_Pyrenees 2.764210e-01 True kuvasz 5.787350e-02 True
299 671486386088865792 https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg 1 German_shepherd 0.827035 True kelpie 8.764770e-02 True red_wolf 3.121790e-02 False
300 671488513339211776 https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg 1 hermit_crab 0.528761 False snail 1.856440e-01 False shower_curtain 6.636050e-02 False
301 671497587707535361 https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg 1 swing 0.089165 False paddle 8.074690e-02 False bathing_cap 6.569400e-02 False
302 671504605491109889 https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg 1 toy_poodle 0.259115 True bath_towel 1.776690e-01 False Maltese_dog 7.171250e-02 True
303 671511350426865664 https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg 1 hermit_crab 0.625409 False tick 1.273330e-01 False snail 9.791590e-02 False
304 671518598289059840 https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg 1 Lakeland_terrier 0.428275 True wire-haired_fox_terrier 1.114720e-01 True toy_poodle 1.050160e-01 True
305 671520732782923777 https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg 1 Pomeranian 0.551031 True Pekinese 1.352620e-01 True gibbon 6.155740e-02 False
306 671528761649688577 https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg 1 Doberman 0.782626 True black-and-tan_coonhound 1.096780e-01 True Gordon_setter 5.211020e-02 True
307 671533943490011136 https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg 1 hen 0.556524 False cock 4.420330e-01 False black_swan 1.180750e-03 False
308 671536543010570240 https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg 1 pug 0.537652 True bull_mastiff 2.206170e-01 True French_bulldog 6.829650e-02 True
309 671538301157904385 https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg 1 park_bench 0.194211 False water_bottle 7.186960e-02 False beacon 5.343310e-02 False
310 671542985629241344 https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg 1 Shetland_sheepdog 0.980339 True collie 6.693000e-03 True papillon 6.157010e-03 True
311 671544874165002241 https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg 1 feather_boa 0.240858 False wig 8.594620e-02 False wool 4.067350e-02 False
312 671547767500775424 https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg 2 Loafer 0.255088 False platypus 9.001910e-02 False cowboy_boot 6.653600e-02 False
313 671561002136281088 https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg 1 Gordon_setter 0.469373 True black-and-tan_coonhound 2.708930e-01 True Rottweiler 1.532330e-01 True
314 671729906628341761 https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg 1 kuvasz 0.431469 True Samoyed 1.171220e-01 True white_wolf 9.006660e-02 False
315 671735591348891648 https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg 2 stone_wall 0.271121 False Irish_wolfhound 6.307820e-02 True poncho 4.822590e-02 False
316 671743150407421952 https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg 1 toy_poodle 0.419427 True miniature_poodle 2.370670e-01 True swing 1.041930e-01 False
317 671744970634719232 https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg 1 ice_bear 0.251193 False ram 2.138390e-01 False Arctic_fox 8.155140e-02 False
318 671763349865160704 https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg 1 prayer_rug 0.445334 False doormat 2.753110e-01 False bib 4.881320e-02 False
319 671768281401958400 https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg 2 Chihuahua 0.500373 True French_bulldog 1.127960e-01 True Italian_greyhound 6.289270e-02 True
320 671789708968640512 https://pbs.twimg.com/tweet_video_thumb/CVKtH-4WIAAmiQ5.png 1 dalmatian 0.114259 True teddy 6.227520e-02 False steam_locomotive 4.970020e-02 False
321 671855973984772097 https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg 1 chimpanzee 0.636031 False gorilla 9.875150e-02 False fountain 3.175550e-02 False
322 671866342182637568 https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg 1 Labrador_retriever 0.875614 True Chihuahua 3.218220e-02 True golden_retriever 1.723250e-02 True
323 671874878652489728 https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg 1 china_cabinet 0.996031 False entertainment_center 1.985890e-03 False bookcase 1.651810e-03 False
324 671879137494245376 https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg 1 bee_eater 0.302648 False toucan 2.196460e-01 False chickadee 1.566870e-01 False
325 671882082306625538 https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg 1 ski_mask 0.968325 False mask 2.186270e-02 False abaya 5.479450e-03 False
326 671891728106971137 https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg 1 Labrador_retriever 0.567933 True golden_retriever 3.494010e-01 True seat_belt 6.939620e-02 False
327 671896809300709376 https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg 1 chow 0.243529 True hamster 2.271500e-01 False Pomeranian 5.605670e-02 True
328 672068090318987265 https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg 1 pug 0.863385 True shopping_cart 1.257460e-01 False Border_terrier 2.972460e-03 True
329 672082170312290304 https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg 1 hamster 0.132440 False toy_poodle 1.239620e-01 True bubble 5.621240e-02 False
330 672095186491711488 https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg 1 pug 0.794087 True French_bulldog 1.407960e-01 True bull_mastiff 4.468110e-02 True
331 672125275208069120 https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg 1 tennis_ball 0.999834 False golden_retriever 8.675670e-05 True racket 5.332190e-05 False
332 672139350159835138 https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg 1 Rottweiler 0.290992 True American_black_bear 2.381200e-01 False chimpanzee 1.155410e-01 False
333 672160042234327040 https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg 1 pug 0.561027 True French_bulldog 2.221140e-01 True Labrador_retriever 6.545560e-02 True
334 672169685991993344 https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg 1 cocker_spaniel 0.991011 True Sussex_spaniel 4.032130e-03 True miniature_poodle 1.275640e-03 True
335 672205392827572224 https://pbs.twimg.com/media/CVQnPMrVAAAzShR.jpg 1 carton 0.952613 False crate 3.537620e-02 False pug 3.266910e-03 True
336 672222792075620352 https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg 1 beagle 0.958178 True basset 9.117310e-03 True Italian_greyhound 7.731050e-03 True
337 672231046314901505 https://pbs.twimg.com/media/CVQ-kfWWoAAXV15.jpg 1 killer_whale 0.823919 False grey_whale 3.660060e-02 False hammerhead 2.952190e-02 False
338 672239279297454080 https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg 1 pug 0.332536 True French_bulldog 2.581240e-01 True bull_mastiff 1.208730e-01 True
339 672245253877968896 https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg 1 Chihuahua 0.718944 True badger 1.785460e-01 False toy_terrier 3.710310e-02 True
340 672248013293752320 https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg 1 Irish_terrier 0.413173 True Airedale 3.356160e-01 True toy_poodle 2.795230e-02 True
341 672254177670729728 https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg 1 pug 0.979487 True French_bulldog 1.685040e-02 True Norwegian_elkhound 1.617540e-03 True
342 672256522047614977 https://pbs.twimg.com/media/CVRVvRMWEAIBKOP.jpg 1 ostrich 0.999004 False Arabian_camel 5.120290e-04 False llama 1.469420e-04 False
343 672264251789176834 https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg 1 Chihuahua 0.609860 True teddy 6.813370e-02 False Norwich_terrier 5.922730e-02 True
344 672267570918129665 https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg 1 Irish_terrier 0.716932 True miniature_pinscher 5.123350e-02 True Airedale 4.438090e-02 True
345 672272411274932228 https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg 2 pug 0.914685 True Norwegian_elkhound 1.498190e-02 True Siamese_cat 9.220550e-03 False
346 672466075045466113 https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg 1 cocker_spaniel 0.150424 True toy_poodle 8.860530e-02 True Welsh_springer_spaniel 7.201430e-02 True
347 672475084225949696 https://pbs.twimg.com/media/CVUchRHXAAE4rtp.jpg 1 terrapin 0.879286 False cockroach 4.525240e-02 False box_turtle 1.640380e-02 False
348 672481316919734272 https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg 1 Border_collie 0.599454 True collie 1.062270e-01 True Shetland_sheepdog 9.446490e-02 True
349 672482722825261057 https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg 1 West_Highland_white_terrier 0.586173 True borzoi 2.066200e-01 True Great_Pyrenees 6.065270e-02 True
350 672488522314567680 https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg 1 Doberman 0.605358 True Rottweiler 1.083820e-01 True Appenzeller 7.779770e-02 True
351 672523490734551040 https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg 1 golden_retriever 0.565981 True chow 8.121170e-02 True Irish_terrier 6.159600e-02 True
352 672538107540070400 https://pbs.twimg.com/media/CVVV1wJWoAEcOyk.jpg 1 Siamese_cat 0.383937 False Chihuahua 1.602740e-01 True giant_panda 1.477450e-01 False
353 672591271085670400 https://pbs.twimg.com/media/CVWGMQMWUAA7aOM.jpg 1 gondola 0.134290 False lifeboat 1.083560e-01 False bassinet 9.367890e-02 False
354 672591762242805761 https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg 1 kuvasz 0.777659 True Great_Pyrenees 1.125170e-01 True golden_retriever 3.835090e-02 True
355 672594978741354496 https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg 1 Great_Pyrenees 0.755945 True Old_English_sheepdog 8.233680e-02 True Afghan_hound 2.703660e-02 True
356 672604026190569472 https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg 1 toy_poodle 0.820158 True miniature_poodle 1.784040e-01 True toilet_tissue 2.911580e-04 False
357 672609152938721280 https://pbs.twimg.com/media/CVWWdKLWEAEnSk7.jpg 1 microwave 0.981946 False rotisserie 7.472450e-03 False television 5.880620e-03 False
358 672614745925664768 https://pbs.twimg.com/media/CVWbitUW4AAzclx.jpg 1 starfish 0.712717 False goldfish 2.588650e-01 False sea_cucumber 2.015430e-03 False
359 672622327801233409 https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg 1 golden_retriever 0.952773 True Labrador_retriever 1.083500e-02 True clumber 8.786010e-03 True
360 672640509974827008 https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg 1 Chesapeake_Bay_retriever 0.420155 True Cardigan 2.660300e-01 True Labrador_retriever 4.251450e-02 True
361 672828477930868736 https://pbs.twimg.com/media/CVZd7ttWcAEs2wP.jpg 1 sandbar 0.118154 False stingray 7.591500e-02 False seashore 7.512480e-02 False
362 672834301050937345 https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg 1 Pembroke 0.582560 True Cardigan 2.588690e-01 True nipple 3.383450e-02 False
363 672877615439593473 https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg 1 Chihuahua 0.412362 True beagle 6.806610e-02 True borzoi 4.507120e-02 True
364 672884426393653248 https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg 1 tusker 0.122410 False warthog 1.198700e-01 False water_buffalo 1.058560e-01 False
365 672898206762672129 https://pbs.twimg.com/media/CVadWcCXIAAL4Sh.jpg 1 motor_scooter 0.835819 False bobsled 3.585630e-02 False moped 3.307900e-02 False
366 672902681409806336 https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg 1 ram 0.374466 False bighorn 1.596210e-01 False Arabian_camel 1.119190e-01 False
367 672964561327235073 https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg 1 Chihuahua 0.292343 True pug 1.733640e-01 True French_bulldog 4.550710e-02 True
368 672968025906282496 https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg 1 toy_poodle 0.678046 True miniature_poodle 1.602730e-01 True Airedale 6.564870e-02 True
369 672970152493887488 https://pbs.twimg.com/media/CVbeyGUU8AEq300.jpg 1 leaf_beetle 0.340154 False rhinoceros_beetle 1.396980e-01 False crayfish 5.803360e-02 False
370 672975131468300288 https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg 1 pug 0.836421 True Brabancon_griffon 4.466780e-02 True French_bulldog 3.657050e-02 True
371 672980819271634944 https://pbs.twimg.com/media/CVbodBOUsAAb7jZ.jpg 1 car_mirror 0.232754 False basset 2.194610e-01 True beagle 1.123970e-01 True
372 672984142909456390 https://pbs.twimg.com/media/CVbrcZyVAAA5Wpq.jpg 1 wombat 0.738780 False beaver 1.333680e-01 False wallaby 3.237010e-02 False
373 672988786805112832 https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg 1 Lakeland_terrier 0.836632 True West_Highland_white_terrier 7.389960e-02 True wire-haired_fox_terrier 3.816010e-02 True
374 672995267319328768 https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg 1 French_bulldog 0.719559 True boxer 1.669270e-01 True Boston_bull 1.013540e-01 True
375 672997845381865473 https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg 1 chow 0.517255 True Pomeranian 2.060530e-01 True koala 1.270370e-01 False
376 673148804208660480 https://pbs.twimg.com/media/CVeBQwiUsAAqhLw.jpg 1 tub 0.873010 False bathtub 9.143410e-02 False toilet_seat 2.545630e-02 False
377 673213039743795200 https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg 1 schipperke 0.888082 True groenendael 4.772740e-02 True kelpie 4.139800e-02 True
378 673240798075449344 https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg 1 Airedale 0.443004 True brown_bear 1.141620e-01 False Chesapeake_Bay_retriever 9.463860e-02 True
379 673270968295534593 https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg 1 Shih-Tzu 0.610453 True Maltese_dog 1.668150e-01 True Old_English_sheepdog 1.320150e-01 True
380 673295268553605120 https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg 1 golden_retriever 0.889241 True Labrador_retriever 6.468330e-02 True Great_Pyrenees 1.261260e-02 True
381 673317986296586240 https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg 2 miniature_pinscher 0.384099 True bloodhound 7.992320e-02 True Rottweiler 6.859410e-02 True
382 673320132811366400 https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg 3 Samoyed 0.978833 True Pomeranian 1.276300e-02 True Eskimo_dog 1.853050e-03 True
383 673342308415348736 https://pbs.twimg.com/media/CVgxQc5XIAAYL0W.jpg 1 ski_mask 0.981017 False Chihuahua 1.355920e-02 True kelpie 6.521800e-04 True
384 673343217010679808 https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg 1 Chihuahua 0.541408 True Italian_greyhound 1.568910e-01 True miniature_pinscher 6.955580e-02 True
385 673345638550134785 https://pbs.twimg.com/media/CVg0SVRWEAAsBrS.jpg 1 hamster 0.761025 False weasel 6.936170e-02 False Pomeranian 6.462700e-02 True
386 673350198937153538 https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg 1 West_Highland_white_terrier 0.119188 True quill 1.040140e-01 False Maltese_dog 9.394400e-02 True
387 673352124999274496 https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg 1 golden_retriever 0.672808 True Labrador_retriever 2.758850e-01 True kuvasz 2.225500e-02 True
388 673355879178194945 https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg 1 Rottweiler 0.529248 True miniature_pinscher 1.682960e-01 True Appenzeller 1.004520e-01 True
389 673359818736984064 https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg 1 English_setter 0.696568 True Brittany_spaniel 1.040460e-01 True Ibizan_hound 3.483250e-02 True
390 673363615379013632 https://pbs.twimg.com/media/CVhEoq4WcAE8pBm.jpg 1 ox 0.193431 False warthog 1.238270e-01 False bison 1.111770e-01 False
391 673576835670777856 https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg 1 teddy 0.255210 False Christmas_stocking 9.828520e-02 False pajama 7.273510e-02 False
392 673580926094458881 https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg 1 beagle 0.985062 True basset 6.417840e-03 True Walker_hound 3.532590e-03 True
393 673583129559498752 https://pbs.twimg.com/media/CVkMRUeWsAA9bMh.jpg 1 Arctic_fox 0.153271 False golden_retriever 1.139460e-01 True borzoi 1.107180e-01 True
394 673612854080196609 https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg 1 Newfoundland 0.223101 True Leonberg 1.111060e-01 True shovel 8.562630e-02 False
395 673636718965334016 https://pbs.twimg.com/media/CVk9ApFWUAA-S1s.jpg 1 wombat 0.880257 False corn 1.942070e-02 False pug 1.904430e-02 True
396 673656262056419329 https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg 1 bull_mastiff 0.700625 True Rhodesian_ridgeback 9.469770e-02 True Brabancon_griffon 5.755940e-02 True
397 673662677122719744 https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg 1 Labrador_retriever 0.957670 True beagle 1.241270e-02 True golden_retriever 5.689130e-03 True
398 673680198160809984 https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg 1 Samoyed 0.989853 True Arctic_fox 3.343750e-03 False chow 2.801720e-03 True
399 673686845050527744 https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg 1 Pekinese 0.185903 True guinea_pig 1.729510e-01 False pug 1.661830e-01 True
400 673688752737402881 https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg 1 soft-coated_wheaten_terrier 0.340806 True Sealyham_terrier 2.348980e-01 True kuvasz 2.034950e-01 True
401 673689733134946305 https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg 1 Chesapeake_Bay_retriever 0.382220 True American_Staffordshire_terrier 3.501400e-01 True seat_belt 9.887390e-02 False
402 673697980713705472 https://pbs.twimg.com/media/CVl0vFeWoAAMTfg.jpg 1 porcupine 0.151876 False hen 1.113800e-01 False doormat 5.893370e-02 False
403 673700254269775872 https://pbs.twimg.com/media/CVl2ydUWsAA1jD6.jpg 1 water_bottle 0.614536 False ashcan 5.091140e-02 False bucket 3.743190e-02 False
404 673705679337693185 https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg 1 Shih-Tzu 0.165383 True Lhasa 1.169770e-01 True Yorkshire_terrier 6.389890e-02 True
405 673707060090052608 https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg 1 German_short-haired_pointer 0.935771 True kelpie 2.256100e-02 True Labrador_retriever 8.846650e-03 True
406 673708611235921920 https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg 1 golden_retriever 0.936333 True cocker_spaniel 2.421090e-02 True Labrador_retriever 9.434850e-03 True
407 673709992831262724 https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg 1 Chihuahua 0.330171 True Siamese_cat 1.815800e-01 False kelpie 1.782270e-01 True
408 673711475735838725 https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg 1 Maltese_dog 0.607401 True toy_poodle 1.438360e-01 True Sealyham_terrier 6.390700e-02 True
409 673715861853720576 https://pbs.twimg.com/media/CVmE_fAWIAAlDhU.jpg 1 suit 0.404115 False bow_tie 2.946830e-01 False Windsor_tie 1.327010e-01 False
410 673887867907739649 https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg 2 Brabancon_griffon 0.216767 True Chihuahua 1.909580e-01 True golden_retriever 1.632880e-01 True
411 673906403526995968 https://pbs.twimg.com/media/CVoySqoWUAAWb7N.jpg 1 toilet_seat 0.683319 False soft-coated_wheaten_terrier 4.892770e-02 True Siberian_husky 3.038600e-02 True
412 673919437611909120 https://pbs.twimg.com/media/CVo-JuMWwAAet6F.jpg 1 jack-o'-lantern 0.172079 False schipperke 1.159840e-01 True miniature_pinscher 5.217500e-02 True
413 673956914389192708 https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg 1 pug 0.586161 True Brabancon_griffon 8.274370e-02 True Chihuahua 4.587770e-02 True
414 674008982932058114 https://pbs.twimg.com/media/CVqPkVoU4AAkXA7.jpg 1 jigsaw_puzzle 0.970810 False prayer_rug 1.104820e-02 False quill 8.431710e-03 False
415 674014384960745472 https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg 1 Pembroke 0.742320 True Cardigan 8.493710e-02 True Eskimo_dog 6.832090e-02 True
416 674019345211760640 https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg 1 collie 0.992732 True borzoi 5.042900e-03 True Shetland_sheepdog 1.724780e-03 True
417 674024893172875264 https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg 1 Pomeranian 0.648500 True Pekinese 3.398350e-01 True Persian_cat 6.448460e-03 False
418 674036086168010753 https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg 1 toy_poodle 0.685617 True miniature_poodle 1.519360e-01 True Maltese_dog 4.553110e-02 True
419 674038233588723717 https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg 1 Eskimo_dog 0.358459 True Norwegian_elkhound 2.069630e-01 True malamute 1.482360e-01 True
420 674042553264685056 https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg 1 toy_poodle 0.927975 True miniature_poodle 6.894640e-02 True standard_poodle 1.315750e-03 True
421 674045139690631169 https://pbs.twimg.com/media/CVqwedgXIAEAT6A.jpg 1 robin 0.369661 False rhinoceros_beetle 1.106070e-01 False European_fire_salamander 4.317820e-02 False
422 674051556661161984 https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg 1 Shih-Tzu 0.179777 True badger 1.605800e-01 False three-toed_sloth 1.321540e-01 False
423 674053186244734976 https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg 1 Cardigan 0.984725 True Pembroke 8.730390e-03 True kelpie 2.194770e-03 True
424 674063288070742018 https://pbs.twimg.com/media/CVrA-rIWEAANxwQ.jpg 1 ostrich 0.661176 False bearskin 2.148790e-01 False swab 6.445570e-02 False
425 674075285688614912 https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg 1 Airedale 0.305392 True Kerry_blue_terrier 2.500140e-01 True Lakeland_terrier 1.886680e-01 True
426 674082852460433408 https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg 1 Pomeranian 0.666957 True Shetland_sheepdog 2.801940e-02 True ski_mask 2.068270e-02 False
427 674255168825880576 https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg 1 Eskimo_dog 0.615741 True Siberian_husky 1.995440e-01 True malamute 1.791070e-01 True
428 674262580978937856 https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg 1 Greater_Swiss_Mountain_dog 0.519428 True boxer 1.215000e-01 True Staffordshire_bullterrier 1.144980e-01 True
429 674265582246694913 https://pbs.twimg.com/media/CVt49k_WsAAtNYC.jpg 1 slug 0.998075 False ice_lolly 9.840100e-04 False leafhopper 9.720380e-05 False
430 674269164442398721 https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg 1 pug 0.622921 True Norwegian_elkhound 4.865850e-02 True Cardigan 1.696550e-02 True
431 674271431610523648 https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg 1 German_shepherd 0.991454 True malinois 4.150230e-03 True bloodhound 3.019130e-03 True
432 674291837063053312 https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg 1 Cardigan 0.611525 True Pembroke 3.685660e-01 True Chihuahua 3.329570e-03 True
433 674318007229923329 https://pbs.twimg.com/media/CVuopr8WwAExw_T.jpg 1 porcupine 0.846628 False hamster 3.813610e-02 False echidna 1.468040e-02 False
434 674372068062928900 https://pbs.twimg.com/media/CVvZ0KTWwAAdXKV.jpg 1 seashore 0.346126 False American_alligator 1.064040e-01 False sandbar 4.934910e-02 False
435 674394782723014656 https://pbs.twimg.com/media/CVvueeeWwAUcQLR.jpg 1 toilet_tissue 0.134983 False mosquito_net 1.332470e-01 False Lakeland_terrier 1.090990e-01 True
436 674410619106390016 https://pbs.twimg.com/media/CVv84VDUEAEm3dW.jpg 1 brown_bear 0.698207 False sea_lion 4.647450e-02 False beagle 1.942680e-02 True
437 674416750885273600 https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg 1 Chihuahua 0.287201 True Boston_bull 2.509200e-01 True whippet 1.410120e-01 True
438 674422304705744896 https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg 1 golden_retriever 0.964497 True Labrador_retriever 9.006180e-03 True tennis_ball 7.138830e-03 False
439 674436901579923456 https://pbs.twimg.com/media/CVwUyM9WwAAGDjv.jpg 1 acorn_squash 0.375392 False Shih-Tzu 1.054160e-01 True Lhasa 7.283230e-02 True
440 674447403907457024 https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg 1 Brabancon_griffon 0.409909 True malinois 2.446490e-01 True bull_mastiff 7.481950e-02 True
441 674468880899788800 https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg 2 chow 0.526230 True Pomeranian 2.836470e-01 True toy_poodle 6.766540e-02 True
442 674632714662858753 https://pbs.twimg.com/media/CVzG3yOVAAAqi9I.jpg 1 jellyfish 0.432748 False goldfish 1.131110e-01 False coral_reef 8.704720e-02 False
443 674638615994089473 https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg 1 Pomeranian 0.846986 True chow 1.420140e-01 True keeshond 2.605040e-03 True
444 674644256330530816 https://pbs.twimg.com/media/CVzRXmXWIAA0Fkr.jpg 1 soccer_ball 0.398102 False basset 3.356920e-01 True cocker_spaniel 7.294080e-02 True
445 674646392044941312 https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg 1 flat-coated_retriever 0.837448 True groenendael 8.616650e-02 True Labrador_retriever 1.605220e-02 True
446 674664755118911488 https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg 1 African_crocodile 0.330625 False American_alligator 7.535570e-02 False mink 5.748070e-02 False
447 674670581682434048 https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg 1 malamute 0.180079 True Eskimo_dog 1.780330e-01 True Siberian_husky 7.796610e-02 True
448 674690135443775488 https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg 1 tick 0.242538 False nail 2.125890e-01 False screw 1.728380e-01 False
449 674737130913071104 https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg 1 Pomeranian 0.948537 True schipperke 1.430990e-02 True Chihuahua 8.120240e-03 True
450 674739953134403584 https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg 1 Dandie_Dinmont 0.175915 True black-footed_ferret 9.653430e-02 False toy_poodle 6.414470e-02 True
451 674743008475090944 https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg 1 Bernese_mountain_dog 0.583054 True Shetland_sheepdog 6.599040e-02 True Greater_Swiss_Mountain_dog 6.523620e-02 True
452 674752233200820224 https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg 2 vizsla 0.665516 True redbone 1.733660e-01 True basset 1.347830e-01 True
453 674754018082705410 https://pbs.twimg.com/media/CV01M3ZWIAAV7rv.jpg 1 seashore 0.352321 False promontory 1.317530e-01 False wreck 9.559670e-02 False
454 674764817387900928 https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg 2 Samoyed 0.634695 True Arctic_fox 3.098530e-01 False kuvasz 1.964100e-02 True
455 674767892831932416 https://pbs.twimg.com/media/CV1B0WkWwAEBKVx.jpg 1 shower_curtain 0.238855 False sarong 9.241410e-02 False kimono 5.641250e-02 False
456 674774481756377088 https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg 1 Chihuahua 0.407016 True French_bulldog 3.099780e-01 True Siamese_cat 2.276770e-01 False
457 674781762103414784 https://pbs.twimg.com/media/CV1ObvEWcAA7c6i.jpg 1 ocarina 0.148975 False hamster 6.898490e-02 False wool 3.172850e-02 False
458 674788554665512960 https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg 1 miniature_poodle 0.349561 True toy_poodle 1.547110e-01 True Maltese_dog 1.342290e-01 True
459 674790488185167872 https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg 1 Labrador_retriever 0.801903 True Chesapeake_Bay_retriever 1.935750e-01 True Rottweiler 1.193050e-03 True
460 674793399141146624 https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg 1 giant_schnauzer 0.119693 True Afghan_hound 7.276270e-02 True miniature_schnauzer 6.378590e-02 True
461 674800520222154752 https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg 1 Pembroke 0.876479 True Cardigan 9.691140e-02 True dingo 9.195670e-03 False
462 674805413498527744 https://pbs.twimg.com/ext_tw_video_thumb/674805331965399040/pu/img/-7bw8niVrgIkLKOW.jpg 1 English_springer 0.594467 True cocker_spaniel 3.899940e-01 True Welsh_springer_spaniel 7.096110e-03 True
463 674999807681908736 https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg 1 Rottweiler 0.591829 True Doberman 2.045440e-01 True black-and-tan_coonhound 7.860190e-02 True
464 675003128568291329 https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg 1 Pembroke 0.655279 True Pomeranian 1.041640e-01 True Cardigan 5.281770e-02 True
465 675006312288268288 https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg 1 boxer 0.654697 True space_heater 4.338880e-02 False beagle 4.284760e-02 True
466 675015141583413248 https://pbs.twimg.com/media/CV4iqh5WcAEV1E6.jpg 1 street_sign 0.290091 False golden_retriever 2.583720e-01 True sandbar 1.321730e-01 False
467 675047298674663426 https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg 1 Samoyed 0.978007 True chow 7.121240e-03 True Pomeranian 6.397830e-03 True
468 675109292475830276 https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg 1 dalmatian 0.989519 True English_setter 5.257670e-03 True German_short-haired_pointer 1.442830e-03 True
469 675111688094527488 https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg 1 Labrador_retriever 0.631501 True Brittany_spaniel 1.019270e-01 True Chesapeake_Bay_retriever 6.264980e-02 True
470 675113801096802304 https://pbs.twimg.com/media/CV58a4nXAAApywo.jpg 1 bow 0.168020 False quill 1.088070e-01 False joystick 4.331180e-02 False
471 675135153782571009 https://pbs.twimg.com/media/CV6P1lnWIAAUQHk.jpg 1 stove 0.587507 False rotisserie 5.171310e-02 False microwave 2.072530e-02 False
472 675145476954566656 https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg 1 Labrador_retriever 0.458746 True Great_Dane 2.355040e-01 True Staffordshire_bullterrier 1.168640e-01 True
473 675146535592706048 https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg 1 dingo 0.288447 False Cardigan 2.299440e-01 True Pembroke 1.904070e-01 True
474 675147105808306176 https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg 1 golden_retriever 0.949215 True Labrador_retriever 1.676540e-02 True flat-coated_retriever 1.063730e-02 True
475 675149409102012420 https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg 1 chow 0.999876 True Tibetan_mastiff 5.867490e-05 True Tibetan_terrier 2.877850e-05 True
476 675153376133427200 https://pbs.twimg.com/media/CV6gaUUWEAAnETq.jpg 1 paper_towel 0.327957 False mailbox 9.602690e-02 False seat_belt 3.499510e-02 False
477 675166823650848770 https://pbs.twimg.com/media/CV6spB7XAAIpMyP.jpg 1 llama 0.284394 False standard_poodle 1.325690e-01 True teddy 1.279750e-01 False
478 675334060156301312 https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg 2 Pembroke 0.773135 True Cardigan 1.168100e-01 True chow 3.903620e-02 True
479 675349384339542016 https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg 3 borzoi 0.866367 True Saluki 1.220790e-01 True Irish_wolfhound 4.019720e-03 True
480 675354435921575936 https://pbs.twimg.com/ext_tw_video_thumb/675354114423808004/pu/img/qL1R_nGLqa6lmkOx.jpg 1 upright 0.303415 False golden_retriever 1.813510e-01 True Brittany_spaniel 1.620840e-01 True
481 675362609739206656 https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg 1 Labrador_retriever 0.479008 True ice_bear 2.182890e-01 False kuvasz 1.399110e-01 True
482 675372240448454658 https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg 1 Chihuahua 0.416385 True West_Highland_white_terrier 1.029330e-01 True Samoyed 8.729950e-02 True
483 675432746517426176 https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg 1 Labrador_retriever 0.986548 True golden_retriever 8.861850e-03 True Chihuahua 6.935280e-04 True
484 675483430902214656 https://pbs.twimg.com/media/CV_MmGZU8AAggM6.jpg 1 box_turtle 0.543706 False terrapin 2.026000e-01 False loggerhead 7.112150e-02 False
485 675489971617296384 https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg 1 West_Highland_white_terrier 0.139613 True seat_belt 1.186470e-01 False Old_English_sheepdog 9.395220e-02 True
486 675497103322386432 https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg 1 vizsla 0.519589 True miniature_pinscher 6.477120e-02 True Rhodesian_ridgeback 6.149130e-02 True
487 675501075957489664 https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg 1 dough 0.806757 False bakery 2.790660e-02 False French_loaf 1.818890e-02 False
488 675517828909424640 https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg 1 Scottish_deerhound 0.240591 True groenendael 1.569160e-01 True flat-coated_retriever 9.089940e-02 True
489 675522403582218240 https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg 1 cocker_spaniel 0.299708 True golden_retriever 2.636650e-01 True Irish_setter 8.032330e-02 True
490 675531475945709568 https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg 1 Pembroke 0.918441 True Cardigan 2.733950e-02 True Siberian_husky 2.022100e-02 True
491 675534494439489536 https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg 1 chow 0.749368 True schipperke 1.337380e-01 True Newfoundland 4.991380e-02 True
492 675706639471788032 https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg 1 English_springer 0.990300 True Welsh_springer_spaniel 2.079910e-03 True cocker_spaniel 2.013780e-03 True
493 675707330206547968 https://pbs.twimg.com/media/CWCYOqWUAAARmGr.jpg 1 bath_towel 0.721933 False Staffordshire_bullterrier 5.934420e-02 True bagel 3.570160e-02 False
494 675710890956750848 https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg 2 standard_schnauzer 0.441427 True miniature_schnauzer 2.488850e-01 True Sealyham_terrier 1.649670e-01 True
495 675740360753160193 https://pbs.twimg.com/ext_tw_video_thumb/675740268751138818/pu/img/dVaVeFAVT-lk_1ZV.jpg 1 golden_retriever 0.800495 True kuvasz 9.775640e-02 True Saluki 6.841460e-02 True
496 675781562965868544 https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg 1 Maltese_dog 0.921968 True West_Highland_white_terrier 1.781070e-02 True toy_poodle 1.355540e-02 True
497 675798442703122432 https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg 1 beagle 0.681218 True basset 1.251210e-01 True boxer 8.039820e-02 True
498 675820929667219457 https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg 1 basset 0.556373 True beagle 2.016750e-01 True bloodhound 1.108480e-01 True
499 675822767435051008 https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg 1 Pomeranian 0.460710 True chow 2.027650e-01 True Pekinese 1.332660e-01 True
500 675845657354215424 https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg 1 pug 0.883952 True Boston_bull 1.105680e-02 True French_bulldog 9.839810e-03 True
501 675853064436391936 https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg 1 Labrador_retriever 0.868367 True golden_retriever 4.330460e-02 True vizsla 2.820720e-02 True
502 675870721063669760 https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg 1 golden_retriever 0.263892 True Welsh_springer_spaniel 1.841930e-01 True beagle 1.822410e-01 True
503 675878199931371520 https://pbs.twimg.com/media/CWEzo19WoAEiOCj.jpg 1 wood_rabbit 0.785756 False hare 1.181810e-01 False Cardigan 4.362710e-02 True
504 675888385639251968 https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg 1 West_Highland_white_terrier 0.672117 True Old_English_sheepdog 1.461470e-01 True komondor 2.314140e-02 True
505 675891555769696257 https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg 1 Italian_greyhound 0.305637 True whippet 2.320570e-01 True Great_Dane 1.178060e-01 True
506 675898130735476737 https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg 1 Labrador_retriever 0.407430 True malinois 7.703670e-02 True pug 7.459730e-02 True
507 676089483918516224 https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg 1 bull_mastiff 0.743808 True boxer 1.066970e-01 True American_Staffordshire_terrier 4.233530e-02 True
508 676098748976615425 https://pbs.twimg.com/media/CWH8L72UkAAvjql.jpg 1 walking_stick 0.162179 False sandal 1.290860e-01 False purse 8.141190e-02 False
509 676101918813499392 https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg 1 Shih-Tzu 0.225848 True Norfolk_terrier 1.868730e-01 True Irish_terrier 1.069870e-01 True
510 676146341966438401 https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg 1 Irish_water_spaniel 0.388332 True standard_poodle 2.841210e-01 True greenhouse 3.486810e-02 False
511 676191832485810177 https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg 2 Chihuahua 0.376741 True Italian_greyhound 1.731140e-01 True muzzle 7.148510e-02 False
512 676215927814406144 https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg 1 hamster 0.999484 False guinea_pig 1.582170e-04 False broccoli 6.091100e-05 False
513 676219687039057920 https://pbs.twimg.com/media/CWJqN9iWwAAg86R.jpg 1 bubble 0.997556 False leafhopper 1.589610e-04 False whippet 1.324640e-04 True
514 676237365392908289 https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg 1 French_bulldog 0.961996 True Chihuahua 2.179300e-02 True Boston_bull 6.916290e-03 True
515 676263575653122048 https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg 1 teddy 0.098283 False toy_poodle 9.802930e-02 True shopping_basket 7.785210e-02 False
516 676430933382295552 https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg 1 golden_retriever 0.583875 True cocker_spaniel 2.036710e-01 True Labrador_retriever 3.612170e-02 True
517 676440007570247681 https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg 2 Maltese_dog 0.579472 True toy_poodle 1.334460e-01 True Shih-Tzu 9.439660e-02 True
518 676470639084101634 https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg 1 golden_retriever 0.790386 True borzoi 2.288510e-02 True dingo 1.534340e-02 False
519 676496375194980353 https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg 1 pug 0.985387 True Norwegian_elkhound 4.416900e-03 True French_bulldog 3.892870e-03 True
520 676533798876651520 https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg 1 chow 0.265274 True ice_bear 1.676140e-01 False fur_coat 1.175060e-01 False
521 676575501977128964 https://pbs.twimg.com/media/CWOt07EUsAAnOYW.jpg 1 feather_boa 0.424106 False Yorkshire_terrier 7.314430e-02 True Shetland_sheepdog 5.759760e-02 True
522 676582956622721024 https://pbs.twimg.com/media/CWO0m8tUwAAB901.jpg 1 seat_belt 0.790028 False Boston_bull 1.963070e-01 True French_bulldog 1.242890e-02 True
523 676588346097852417 https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg 1 Boston_bull 0.976577 True French_bulldog 1.432370e-02 True Chihuahua 2.301920e-03 True
524 676603393314578432 https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg 1 whippet 0.877021 True Great_Dane 3.418190e-02 True boxer 2.840400e-02 True
525 676606785097199616 https://pbs.twimg.com/media/CWPKSGpWcAQN6mw.jpg 1 Loafer 0.202999 False doormat 2.004110e-01 False malinois 1.423000e-01 True
526 676613908052996102 https://pbs.twimg.com/media/CWPQwmJWUAAu_At.jpg 1 book_jacket 0.493790 False Doberman 9.642280e-02 True miniature_pinscher 7.064670e-02 True
527 676617503762681856 https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg 1 Chihuahua 0.841084 True Pomeranian 1.205300e-01 True Pekinese 6.600340e-03 True
528 676776431406465024 https://pbs.twimg.com/ext_tw_video_thumb/676776408941662209/pu/img/k-6I3YEZAQtYPBXR.jpg 1 doormat 0.201346 False dishwasher 1.917490e-01 False microwave 3.811000e-02 False
529 676811746707918848 https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg 1 Chihuahua 0.440916 True Pomeranian 3.458060e-01 True cocker_spaniel 6.033120e-02 True
530 676819651066732545 https://pbs.twimg.com/media/CWSL4W8WsAAE4KU.jpg 2 rain_barrel 0.625555 False barrel 1.383830e-01 False Labrador_retriever 3.946460e-02 True
531 676821958043033607 https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg 2 Great_Pyrenees 0.869804 True kuvasz 7.981430e-02 True standard_poodle 1.326300e-02 True
532 676864501615042560 https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg 1 Chesapeake_Bay_retriever 0.371146 True water_buffalo 9.959630e-02 False Weimaraner 4.896790e-02 True
533 676897532954456065 https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg 1 hamster 0.628255 False guinea_pig 3.186460e-01 False macaque 1.305820e-02 False
534 676936541936185344 https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg 1 Chesapeake_Bay_retriever 0.545286 True Norwegian_elkhound 8.148200e-02 True space_heater 4.739110e-02 False
535 676942428000112642 https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg 1 black-footed_ferret 0.707199 False polecat 1.546300e-01 False weasel 9.762550e-02 False
536 676946864479084545 https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg 1 Pekinese 0.752707 True golden_retriever 5.565460e-02 True Great_Pyrenees 4.101780e-02 True
537 676948236477857792 https://pbs.twimg.com/media/CWUA1GFW4AAowiq.jpg 1 guenon 0.611603 False macaque 1.351760e-01 False squirrel_monkey 8.324730e-02 False
538 676949632774234114 https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg 1 Welsh_springer_spaniel 0.206479 True Saint_Bernard 1.393390e-01 True boxer 1.146060e-01 True
539 676957860086095872 https://pbs.twimg.com/ext_tw_video_thumb/676957802976419840/pu/img/dCj-qlXo73A5hf6Q.jpg 1 Labrador_retriever 0.772423 True beagle 5.590170e-02 True golden_retriever 3.115190e-02 True
540 676975532580409345 https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg 1 malamute 0.363257 True Siberian_husky 2.458620e-01 True Eskimo_dog 1.255470e-01 True
541 677187300187611136 https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg 1 English_setter 0.282396 True Shih-Tzu 8.411190e-02 True Old_English_sheepdog 5.953800e-02 True
542 677228873407442944 https://pbs.twimg.com/media/CWYAEINW4AIuw8P.jpg 1 common_iguana 0.566338 False tennis_ball 1.546460e-01 False green_lizard 4.497580e-02 False
543 677269281705472000 https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg 1 Shetland_sheepdog 0.656616 True collie 1.954050e-01 True German_shepherd 1.310320e-02 True
544 677301033169788928 https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg 1 Japanese_spaniel 0.661178 True Pekinese 1.501190e-01 True Chihuahua 1.197200e-01 True
545 677314812125323265 https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg 2 Blenheim_spaniel 0.924127 True Japanese_spaniel 5.479010e-02 True Chihuahua 8.204040e-03 True
546 677328882937298944 https://pbs.twimg.com/media/CWZbBlAUsAAjRg5.jpg 1 water_buffalo 0.424250 False kelpie 2.905410e-02 True Staffordshire_bullterrier 2.846970e-02 True
547 677331501395156992 https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg 1 beagle 0.313464 True boxer 2.185030e-01 True French_bulldog 1.064620e-01 True
548 677334615166730240 https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg 2 Lakeland_terrier 0.859392 True Airedale 6.729170e-02 True Irish_water_spaniel 4.953060e-02 True
549 677530072887205888 https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg 1 Staffordshire_bullterrier 0.689259 True Norwegian_elkhound 2.612100e-02 True American_Staffordshire_terrier 2.307470e-02 True
550 677547928504967168 https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg 1 American_Staffordshire_terrier 0.914978 True Staffordshire_bullterrier 8.439530e-02 True boxer 4.616630e-04 True
551 677557565589463040 https://pbs.twimg.com/media/CWcrAVQWEAA6QMp.jpg 1 seat_belt 0.277257 False Shih-Tzu 2.490170e-01 True Pekinese 2.092130e-01 True
552 677565715327688705 https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg 1 basset 0.397295 True Welsh_springer_spaniel 1.995540e-01 True purse 1.056410e-01 False
553 677573743309385728 https://pbs.twimg.com/media/CWc5uVPXIAErLYr.jpg 2 patio 0.535070 False folding_chair 8.041920e-02 False parallel_bars 3.479650e-02 False
554 677644091929329666 https://pbs.twimg.com/ext_tw_video_thumb/677644010865999872/pu/img/zVHEMYnJKzq1SauT.jpg 1 Chihuahua 0.626236 True Italian_greyhound 1.284830e-01 True swing 5.984040e-02 False
555 677662372920729601 https://pbs.twimg.com/media/CWeKTZTWsAA5R3Z.jpg 1 cowboy_hat 0.256110 False trench_coat 1.270860e-01 False cloak 7.143890e-02 False
556 677673981332312066 https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg 1 Maltese_dog 0.817908 True Angora 7.780510e-02 False Pomeranian 2.218420e-02 True
557 677687604918272002 https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg 1 Pembroke 0.573047 True sunglasses 1.267580e-01 False golden_retriever 1.080470e-01 True
558 677698403548192770 https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg 1 Shih-Tzu 0.916645 True Lhasa 5.788340e-02 True Pekinese 2.012580e-02 True
559 677700003327029250 https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg 1 Siberian_husky 0.120849 True junco 7.920560e-02 False malamute 6.308750e-02 True
560 677716515794329600 https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg 1 teddy 0.662908 False crib 3.189120e-02 False chow 2.543780e-02 True
561 677895101218201600 https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg 1 dalmatian 0.550702 True kuvasz 6.022640e-02 True Great_Pyrenees 5.863100e-02 True
562 677918531514703872 https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg 1 Eskimo_dog 0.199347 True dalmatian 1.532250e-01 True American_Staffordshire_terrier 1.077980e-01 True
563 678021115718029313 https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg 1 miniature_pinscher 0.822048 True Doberman 9.608450e-02 True Rottweiler 3.270930e-02 True
564 678255464182861824 https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg 1 Chihuahua 0.613819 True Yorkshire_terrier 1.279310e-01 True Pomeranian 6.212430e-02 True
565 678278586130948096 https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg 1 Maltese_dog 0.897841 True Lhasa 3.571750e-02 True Tibetan_terrier 1.710750e-02 True
566 678334497360859136 https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg 1 Norfolk_terrier 0.378643 True golden_retriever 9.559390e-02 True kelpie 8.530920e-02 True
567 678341075375947776 https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg 1 golden_retriever 0.853284 True cocker_spaniel 2.622980e-02 True Labrador_retriever 2.412280e-02 True
568 678380236862578688 https://pbs.twimg.com/media/CWoXOfSUAAA4u8g.jpg 1 dogsled 0.088540 False snowmobile 5.729100e-02 False Samoyed 4.760140e-02 True
569 678389028614488064 https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg 1 miniature_pinscher 0.516284 True kelpie 2.274020e-01 True vizsla 1.032460e-01 True
570 678396796259975168 https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg 2 Pembroke 0.956180 True Cardigan 3.180310e-02 True Chihuahua 6.276500e-03 True
571 678399652199309312 https://pbs.twimg.com/ext_tw_video_thumb/678399528077250560/pu/img/BOjUNHRsYLeSo0hl.jpg 1 swing 0.929196 False Bedlington_terrier 1.504720e-02 True Great_Pyrenees 1.403890e-02 True
572 678410210315247616 https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg 1 schipperke 0.145877 True Labrador_retriever 9.835380e-02 True kelpie 9.739340e-02 True
573 678424312106393600 https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg 1 Maltese_dog 0.759945 True toy_poodle 1.011940e-01 True Shih-Tzu 5.603740e-02 True
574 678446151570427904 https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg 1 Staffordshire_bullterrier 0.284492 True Rottweiler 1.894340e-01 True American_Staffordshire_terrier 1.894300e-01 True
575 678643457146150913 https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg 1 Labrador_retriever 0.338757 True flat-coated_retriever 3.044700e-01 True chest 9.339230e-02 False
576 678675843183484930 https://pbs.twimg.com/media/CWskEqnWUAAQZW_.jpg 1 maze 0.339850 False streetcar 9.968780e-02 False sundial 8.480770e-02 False
577 678740035362037760 https://pbs.twimg.com/media/CWtede2WIAAF_AJ.jpg 1 seat_belt 0.787164 False sunglasses 4.573870e-02 False beagle 2.252510e-02 True
578 678755239630127104 https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg 1 malamute 0.606654 True Border_collie 1.938310e-01 True collie 4.837810e-02 True
579 678764513869611008 https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg 1 Irish_terrier 0.696646 True Australian_terrier 7.496160e-02 True Irish_setter 6.390120e-02 True
580 678767140346941444 https://pbs.twimg.com/media/CWt3G6EVEAIGEPr.jpg 1 harp 0.821120 False window_screen 2.512080e-02 False mosquito_net 1.671560e-02 False
581 678774928607469569 https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg 1 Pembroke 0.194681 True toy_poodle 1.218210e-01 True Pomeranian 9.684300e-02 True
582 678798276842360832 https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg 1 Airedale 0.583122 True silky_terrier 1.295670e-01 True Lakeland_terrier 9.472660e-02 True
583 678800283649069056 https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg 1 Labrador_retriever 0.213673 True beagle 1.462350e-01 True Airedale 1.227010e-01 True
584 678969228704284672 https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg 1 Labrador_retriever 0.680251 True Chesapeake_Bay_retriever 2.016970e-01 True golden_retriever 1.967590e-02 True
585 678991772295516161 https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg 1 Eskimo_dog 0.330216 True Siberian_husky 1.870030e-01 True Chihuahua 1.014200e-01 True
586 679047485189439488 https://pbs.twimg.com/media/CWx2FaLWcAEQ3vh.jpg 1 panpipe 0.962572 False bannister 2.524820e-02 False golden_retriever 2.930350e-03 True
587 679062614270468097 https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg 2 cash_machine 0.802333 False schipperke 4.551860e-02 True German_shepherd 2.335350e-02 True
588 679111216690831360 https://pbs.twimg.com/ext_tw_video_thumb/679111114081370114/pu/img/hFca8BHjRopgD0cM.jpg 1 kelpie 0.189423 True beagle 1.219880e-01 True basset 1.211710e-01 True
589 679132435750195208 https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg 1 Scottish_deerhound 0.194610 True Irish_wolfhound 1.628550e-01 True giant_schnauzer 1.598370e-01 True
590 679148763231985668 https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg 1 Italian_greyhound 0.302685 True hair_slide 1.242810e-01 False Afghan_hound 5.984600e-02 True
591 679158373988876288 https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg 1 pug 0.272205 True bull_mastiff 2.515300e-01 True bath_towel 1.168060e-01 False
592 679462823135686656 https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg 1 toy_poodle 0.621780 True miniature_poodle 1.978190e-01 True soft-coated_wheaten_terrier 4.674500e-02 True
593 679475951516934144 https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg 1 Maltese_dog 0.145742 True toy_poodle 1.394070e-01 True West_Highland_white_terrier 1.088210e-01 True
594 679503373272485890 https://pbs.twimg.com/media/CW4UtmYWsAAEjqA.jpg 1 porcupine 0.999846 False meerkat 7.191480e-05 False echidna 4.447290e-05 False
595 679511351870550016 https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg 1 Chihuahua 0.761972 True black-footed_ferret 1.506050e-01 False squirrel_monkey 2.814790e-02 False
596 679527802031484928 https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg 1 mailbox 0.336393 False cannon 1.589360e-01 False cuirass 5.264710e-02 False
597 679530280114372609 https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg 1 dalmatian 0.750256 True jaguar 1.690070e-01 False zebra 6.481490e-03 False
598 679722016581222400 https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg 1 boxer 0.459604 True Boston_bull 1.979130e-01 True French_bulldog 8.702250e-02 True
599 679729593985699840 https://pbs.twimg.com/media/CW7iddWUsAElUC0.jpg 1 wallaby 0.164215 False West_Highland_white_terrier 9.351480e-02 True ashcan 6.727830e-02 False
600 679736210798047232 https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg 1 French_bulldog 0.319139 True Chihuahua 1.540880e-01 True Cardigan 1.176880e-01 True
601 679777920601223168 https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg 1 bloodhound 0.528819 True bull_mastiff 4.201190e-01 True French_bulldog 9.480590e-03 True
602 679828447187857408 https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg 3 Chihuahua 0.346545 True dalmatian 1.662460e-01 True toy_terrier 1.175020e-01 True
603 679844490799091713 https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg 1 Airedale 0.903832 True Border_terrier 3.471260e-02 True toy_poodle 2.137800e-02 True
604 679854723806179328 https://pbs.twimg.com/media/CW9UQ7oWkAAErmU.jpg 1 llama 0.887963 False ram 9.502070e-02 False chow 2.307390e-03 True
605 679862121895714818 https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg 1 EntleBucher 0.523206 True Greater_Swiss_Mountain_dog 4.316570e-01 True Appenzeller 4.420790e-02 True
606 679877062409191424 https://pbs.twimg.com/media/CW9olDsUsAA0XSf.jpg 1 hog 0.809466 False hay 6.017780e-02 False lumbermill 1.648340e-02 False
607 680055455951884288 https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg 1 Samoyed 0.995466 True Great_Pyrenees 1.833950e-03 True Pomeranian 6.669490e-04 True
608 680070545539371008 https://pbs.twimg.com/media/CW-dU34WQAANBGy.jpg 1 earthstar 0.127701 False Shih-Tzu 1.218110e-01 True bubble 1.178200e-01 False
609 680085611152338944 https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg 3 pillow 0.778113 False apron 9.502280e-02 False wallet 4.932580e-02 False
610 680100725817409536 https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg 1 golden_retriever 0.698961 True chow 1.459710e-01 True Pomeranian 3.488800e-02 True
611 680115823365742593 https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg 1 pug 0.999365 True French_bulldog 5.436150e-04 True Boston_bull 2.815280e-05 True
612 680130881361686529 https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg 1 Maltese_dog 0.199121 True West_Highland_white_terrier 1.978970e-01 True Shih-Tzu 1.571300e-01 True
613 680145970311643136 https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg 1 miniature_poodle 0.457117 True toy_poodle 2.264810e-01 True Maltese_dog 6.768150e-02 True
614 680161097740095489 https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg 1 bluetick 0.268681 True miniature_pinscher 1.256520e-01 True English_setter 8.937270e-02 True
615 680176173301628928 https://pbs.twimg.com/media/CXB4nWnWEAAhLTX.jpg 1 Christmas_stocking 0.207547 False mask 1.938800e-01 False feather_boa 1.527380e-01 False
616 680191257256136705 https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg 1 Brittany_spaniel 0.733253 True Welsh_springer_spaniel 2.516340e-01 True English_springer 9.243210e-03 True
617 680206703334408192 https://pbs.twimg.com/media/CXCUYcRW8AAObYM.jpg 1 Christmas_stocking 0.149758 False cloak 1.288300e-01 False teddy 1.091290e-01 False
618 680221482581123072 https://pbs.twimg.com/media/CXCh0QZW8AALdXm.jpg 1 bubble 0.240173 False hen 1.462220e-01 False abaya 1.393420e-01 False
619 680440374763077632 https://pbs.twimg.com/ext_tw_video_thumb/680440290977693696/pu/img/B900g7b-n-zhnwi5.jpg 1 space_heater 0.920367 False radiator 4.993320e-02 False electric_fan 6.719030e-03 False
620 680473011644985345 https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg 1 Lakeland_terrier 0.796694 True West_Highland_white_terrier 1.387090e-01 True Norwich_terrier 1.625340e-02 True
621 680494726643068929 https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg 1 kuvasz 0.438627 True Samoyed 1.116220e-01 True Great_Pyrenees 6.406080e-02 True
622 680497766108381184 https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg 1 Chihuahua 0.538354 True muzzle 8.428870e-02 False ski_mask 7.669010e-02 False
623 680583894916304897 https://pbs.twimg.com/media/CXHrcFYWcAEE5_L.jpg 1 tub 0.889801 False bathtub 3.235110e-02 False hippopotamus 1.417730e-02 False
624 680609293079592961 https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg 1 French_bulldog 0.700764 True Chihuahua 7.238960e-02 True American_Staffordshire_terrier 3.961870e-02 True
625 680798457301471234 https://pbs.twimg.com/media/CXKuiyHUEAAMAGa.jpg 1 ram 0.499761 False hog 2.837950e-01 False ox 6.745510e-02 False
626 680801747103793152 https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg 1 pug 0.996720 True Labrador_retriever 1.438790e-03 True Staffordshire_bullterrier 5.176030e-04 True
627 680836378243002368 https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg 3 Pembroke 0.427781 True Shetland_sheepdog 1.606690e-01 True Pomeranian 1.112500e-01 True
628 680889648562991104 https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg 1 Shetland_sheepdog 0.876337 True collie 7.833100e-02 True Pomeranian 2.040750e-02 True
629 680913438424612864 https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg 1 Pomeranian 0.615678 True golden_retriever 1.264550e-01 True Chihuahua 8.718360e-02 True
630 680934982542561280 https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg 1 Labrador_retriever 0.784398 True Siberian_husky 5.592510e-02 True beagle 2.275010e-02 True
631 680940246314430465 https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg 1 soft-coated_wheaten_terrier 0.289598 True West_Highland_white_terrier 1.571950e-01 True toy_poodle 7.443470e-02 True
632 680959110691590145 https://pbs.twimg.com/media/CXNAsm6WsAEST9R.jpg 2 carousel 0.500992 False feather_boa 6.439000e-02 False pug 4.435650e-02 True
633 680970795137544192 https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg 1 pug 0.713102 True whippet 5.742630e-02 True quilt 5.601810e-02 False
634 681193455364796417 https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg 1 Pomeranian 0.992619 True keeshond 4.356450e-03 True schipperke 8.140000e-04 True
635 681231109724700672 https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg 1 Irish_setter 0.406047 True cocker_spaniel 3.456460e-01 True Airedale 1.479120e-01 True
636 681242418453299201 https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg 1 motor_scooter 0.255934 False rifle 1.452020e-01 False assault_rifle 9.700010e-02 False
637 681261549936340994 https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg 1 Tibetan_terrier 0.382101 True miniature_poodle 9.542940e-02 True Maltese_dog 6.573770e-02 True
638 681281657291280384 https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg 1 Saint_Bernard 0.998830 True Pekinese 3.913120e-04 True Great_Pyrenees 2.235820e-04 True
639 681297372102656000 https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg 1 Lhasa 0.482401 True Shih-Tzu 1.136720e-01 True Pomeranian 9.622860e-02 True
640 681302363064414209 https://pbs.twimg.com/media/CXR44l9WcAAcG_N.jpg 1 frilled_lizard 0.326259 False tailed_frog 1.045390e-01 False axolotl 7.247930e-02 False
641 681320187870711809 https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg 1 Samoyed 0.362596 True Eskimo_dog 2.453950e-01 True Siberian_husky 1.082320e-01 True
642 681339448655802368 https://pbs.twimg.com/media/CXSanNkWkAAqR9M.jpg 1 seat_belt 0.532441 False Labrador_retriever 9.461490e-02 True kuvasz 8.986300e-02 True
643 681523177663676416 https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg 1 Norfolk_terrier 0.205067 True German_shepherd 1.604390e-01 True chow 1.562340e-01 True
644 681579835668455424 https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg 1 Rottweiler 0.760671 True Labrador_retriever 9.658470e-02 True Staffordshire_bullterrier 4.033260e-02 True
645 681610798867845120 https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg 1 toy_poodle 0.821704 True miniature_poodle 1.160420e-01 True Yorkshire_terrier 1.484720e-02 True
646 681654059175129088 https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg 1 Pomeranian 0.800538 True chow 1.468920e-01 True Pekinese 3.761250e-02 True
647 681679526984871937 https://pbs.twimg.com/media/CXXP5O4WEAA4dgS.jpg 1 birdhouse 0.472351 False teddy 1.420580e-01 False pot 3.290590e-02 False
648 681694085539872773 https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg 1 toy_poodle 0.920992 True miniature_poodle 6.085720e-02 True Maltese_dog 6.063720e-03 True
649 681891461017812993 https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg 1 Chihuahua 0.203570 True doormat 1.343160e-01 False toy_terrier 8.448230e-02 True
650 681981167097122816 https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg 1 Labrador_retriever 0.452577 True golden_retriever 4.034200e-01 True beagle 6.948570e-02 True
651 682003177596559360 https://pbs.twimg.com/media/CXb2RcDUsAEnkJb.jpg 1 triceratops 0.249872 False chimpanzee 6.092930e-02 False mask 5.022100e-02 False
652 682032003584274432 https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg 1 schipperke 0.997953 True groenendael 6.764350e-04 True miniature_pinscher 2.112460e-04 True
653 682047327939461121 https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg 1 teddy 0.364095 False doormat 1.192430e-01 False toyshop 3.512710e-02 False
654 682059653698686977 https://pbs.twimg.com/media/CXcpovWWMAAMcfv.jpg 2 jigsaw_puzzle 0.995873 False Siamese_cat 7.808850e-04 False pizza 4.324800e-04 False
655 682242692827447297 https://pbs.twimg.com/media/CXfQG_fW8AAjVhV.jpg 1 snorkel 0.504983 False loggerhead 3.452980e-01 False scuba_diver 7.475390e-02 False
656 682259524040966145 https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg 1 Siberian_husky 0.439670 True Eskimo_dog 3.404740e-01 True malamute 1.012530e-01 True
657 682303737705140231 https://pbs.twimg.com/media/CXgHoLnWAAA8i52.jpg 1 seat_belt 0.997659 False Lakeland_terrier 1.730920e-03 True Airedale 2.036100e-04 True
658 682389078323662849 https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg 1 curly-coated_retriever 0.482288 True flat-coated_retriever 3.152860e-01 True Great_Dane 6.217890e-02 True
659 682393905736888321 https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg 1 vizsla 0.657275 True paddle 9.028640e-02 False Rhodesian_ridgeback 4.822830e-02 True
660 682406705142087680 https://pbs.twimg.com/media/CXhlRmRUMAIYoFO.jpg 1 wombat 0.709344 False koala 1.697580e-01 False beaver 7.943340e-02 False
661 682429480204398592 https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg 1 whippet 0.594701 True Italian_greyhound 3.140910e-01 True Mexican_hairless 3.777330e-02 True
662 682638830361513985 https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg 1 English_springer 0.440781 True Cardigan 4.111820e-01 True Border_collie 2.241220e-02 True
663 682662431982772225 https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg 1 beagle 0.413824 True Cardigan 2.635530e-01 True basset 1.676180e-01 True
664 682697186228989953 https://pbs.twimg.com/media/CXltdtaWYAIuX_V.jpg 1 bald_eagle 0.097232 False torch 9.662150e-02 False cliff 9.038550e-02 False
665 682750546109968385 https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg 1 English_setter 0.947198 True English_springer 3.112770e-02 True Brittany_spaniel 5.512470e-03 True
666 682788441537560576 https://pbs.twimg.com/media/CXnAdosWAAEMGCM.jpg 1 toyshop 0.375610 False orange 9.453760e-02 False teddy 3.980820e-02 False
667 682962037429899265 https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg 1 dingo 0.278600 False Chihuahua 1.552070e-01 True loupe 1.535980e-01 False
668 683030066213818368 https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg 1 boxer 0.722218 True bull_mastiff 1.938040e-01 True French_bulldog 5.519370e-02 True
669 683078886620553216 https://pbs.twimg.com/media/CXrIntsUsAEkv0d.jpg 1 koala 0.141432 False Eskimo_dog 9.404420e-02 True wallaby 8.523650e-02 False
670 683098815881154561 https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg 1 golden_retriever 0.889848 True kuvasz 5.300820e-02 True Labrador_retriever 3.788120e-02 True
671 683111407806746624 https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg 1 cocker_spaniel 0.901392 True soft-coated_wheaten_terrier 2.860480e-02 True miniature_schnauzer 1.780540e-02 True
672 683142553609318400 https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg 1 Leonberg 0.605851 True chow 1.834700e-01 True German_shepherd 7.966190e-02 True
673 683357973142474752 https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg 1 Pembroke 0.406509 True Cardigan 1.548540e-01 True Siberian_husky 1.363660e-01 True
674 683391852557561860 https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg 1 French_bulldog 0.992833 True Boston_bull 4.748630e-03 True pug 1.391690e-03 True
675 683449695444799489 https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg 1 Lakeland_terrier 0.303512 True soft-coated_wheaten_terrier 2.114240e-01 True golden_retriever 1.707250e-01 True
676 683462770029932544 https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg 1 Italian_greyhound 0.399560 True whippet 2.671530e-01 True German_short-haired_pointer 8.131910e-02 True
677 683481228088049664 https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg 1 keeshond 0.508951 True chow 4.420160e-01 True German_shepherd 1.320600e-02 True
678 683498322573824003 https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg 1 Airedale 0.945362 True Irish_terrier 2.685000e-02 True Lakeland_terrier 1.682640e-02 True
679 683742671509258241 https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg 1 Pembroke 0.895279 True Cardigan 2.238500e-02 True cocker_spaniel 1.704520e-02 True
680 683773439333797890 https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg 1 miniature_pinscher 0.072885 True Labrador_retriever 5.786580e-02 True schipperke 5.325660e-02 True
681 683828599284170753 https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg 1 malamute 0.577376 True Siberian_husky 2.871310e-01 True Eskimo_dog 1.175630e-01 True
682 683834909291606017 https://pbs.twimg.com/ext_tw_video_thumb/683834825250320385/pu/img/yZdrqMlyky4KGOu6.jpg 1 Maltese_dog 0.738449 True toy_poodle 1.029920e-01 True Samoyed 2.324720e-02 True
683 683849932751646720 https://pbs.twimg.com/media/CX2F4qNUQAAR6Cm.jpg 1 hog 0.458855 False Mexican_hairless 1.649060e-01 True wild_boar 1.117000e-01 False
684 683852578183077888 https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg 1 toy_poodle 0.551352 True teddy 1.806780e-01 False miniature_poodle 1.640950e-01 True
685 683857920510050305 https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg 1 bluetick 0.174738 True Shetland_sheepdog 1.261010e-01 True beagle 1.228870e-01 True
686 684097758874210310 https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg 1 Labrador_retriever 0.627856 True German_short-haired_pointer 1.736750e-01 True Chesapeake_Bay_retriever 4.134170e-02 True
687 684122891630342144 https://pbs.twimg.com/media/CX5-HslWQAIiXKB.jpg 1 cheetah 0.822193 False Arabian_camel 4.697610e-02 False jaguar 2.578480e-02 False
688 684177701129875456 https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg 1 chow 0.334783 True German_shepherd 1.626470e-01 True golden_retriever 1.386120e-01 True
689 684188786104872960 https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg 1 kelpie 0.537782 True American_Staffordshire_terrier 8.295320e-02 True Staffordshire_bullterrier 6.975990e-02 True
690 684195085588783105 https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg 1 Chihuahua 0.379365 True toy_terrier 1.218090e-01 True Boston_bull 9.598090e-02 True
691 684200372118904832 https://pbs.twimg.com/media/CX7EkuHWkAESLZk.jpg 1 llama 0.681347 False ram 1.201420e-01 False hog 4.368580e-02 False
692 684222868335505415 https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg 1 soft-coated_wheaten_terrier 0.791182 True cocker_spaniel 7.244410e-02 True teddy 7.148650e-02 False
693 684225744407494656 https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg 2 golden_retriever 0.203249 True Samoyed 6.795810e-02 True Great_Pyrenees 6.532750e-02 True
694 684241637099323392 https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg 1 Pembroke 0.508498 True black-footed_ferret 1.155320e-01 False weasel 5.128010e-02 False
695 684460069371654144 https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg 1 Labrador_retriever 0.673691 True Chesapeake_Bay_retriever 1.948970e-01 True American_Staffordshire_terrier 5.947130e-02 True
696 684481074559381504 https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg 1 Chihuahua 0.937810 True Pomeranian 2.030670e-02 True polecat 1.735700e-02 False
697 684538444857667585 https://pbs.twimg.com/ext_tw_video_thumb/684538367950872576/pu/img/kTKOkSU45BS-fpq8.jpg 1 Chihuahua 0.702583 True Siamese_cat 6.821810e-02 False macaque 4.332460e-02 False
698 684567543613382656 https://pbs.twimg.com/media/CYASi6FWQAEQMW2.jpg 1 minibus 0.401942 False llama 2.291450e-01 False seat_belt 2.093930e-01 False
699 684594889858887680 https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg 1 Weimaraner 0.948688 True English_setter 3.535240e-02 True Brittany_spaniel 3.878780e-03 True
700 684800227459624960 https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg 1 miniature_schnauzer 0.294457 True Norfolk_terrier 1.618850e-01 True West_Highland_white_terrier 1.209920e-01 True
701 684880619965411328 https://pbs.twimg.com/media/CYEvSaRWwAAukZ_.jpg 1 clog 0.081101 False spindle 6.695660e-02 False agama 6.088370e-02 False
702 684902183876321280 https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg 1 Pembroke 0.708034 True Cardigan 2.914470e-01 True dingo 1.845610e-04 False
703 684914660081053696 https://pbs.twimg.com/media/CYFOP6cWEAAWp-k.jpg 1 shopping_cart 0.460950 False chow 2.612880e-01 True Labrador_retriever 7.419380e-02 True
704 684926975086034944 https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg 1 Labrador_retriever 0.769412 True golden_retriever 1.448930e-01 True lion 2.143980e-02 False
705 684940049151070208 https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg 2 Border_collie 0.665578 True collie 1.768460e-01 True Old_English_sheepdog 6.517470e-02 True
706 684959798585110529 https://pbs.twimg.com/media/CYF3TSlWMAAaoG5.jpg 1 llama 0.379624 False triceratops 1.627610e-01 False hog 8.425150e-02 False
707 685169283572338688 https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg 1 Bernese_mountain_dog 0.975096 True Appenzeller 1.457810e-02 True EntleBucher 5.943480e-03 True
708 685198997565345792 https://pbs.twimg.com/media/CYJQxvJW8AAkkws.jpg 1 dishwasher 0.888829 False stove 1.341150e-02 False Old_English_sheepdog 9.671380e-03 True
709 685268753634967552 https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg 1 pug 0.999044 True Norwegian_elkhound 5.465860e-04 True bull_mastiff 2.351950e-04 True
710 685307451701334016 https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg 1 Pomeranian 0.963176 True Shetland_sheepdog 1.946830e-02 True keeshond 8.604930e-03 True
711 685315239903100929 https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg 2 chow 0.470162 True Pomeranian 1.596770e-01 True Eskimo_dog 1.050740e-01 True
712 685321586178670592 https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg 1 Boston_bull 0.972483 True French_bulldog 2.546930e-02 True boxer 4.575440e-04 True
713 685325112850124800 https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg 1 golden_retriever 0.586937 True Labrador_retriever 3.982600e-01 True kuvasz 5.409690e-03 True
714 685532292383666176 https://pbs.twimg.com/media/CYN_-6iW8AQhPu2.jpg 1 white_wolf 0.318524 False dingo 2.154360e-01 False collie 9.580520e-02 True
715 685547936038666240 https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg 1 web_site 0.923987 False oscilloscope 9.712370e-03 False hand-held_computer 8.768570e-03 False
716 685641971164143616 https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg 1 Lakeland_terrier 0.253839 True Airedale 2.133490e-01 True three-toed_sloth 8.383410e-02 False
717 685663452032069632 https://pbs.twimg.com/ext_tw_video_thumb/685663358637486080/pu/img/3cXSHFZAgJQ_dDCf.jpg 1 Chesapeake_Bay_retriever 0.171174 True tennis_ball 9.064400e-02 False racket 4.850770e-02 False
718 685667379192414208 https://pbs.twimg.com/media/CYP62A6WkAAOnL4.jpg 1 sliding_door 0.344526 False doormat 1.900270e-01 False washbasin 4.632640e-02 False
719 685906723014619143 https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg 1 Yorkshire_terrier 0.414963 True briard 6.350520e-02 True Pekinese 5.368220e-02 True
720 685943807276412928 https://pbs.twimg.com/ext_tw_video_thumb/685943751555051520/pu/img/rlBvQWaFPUMx1MTi.jpg 1 papillon 0.200812 True toy_terrier 1.145120e-01 True Cardigan 9.451960e-02 True
721 685973236358713344 https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg 1 Siberian_husky 0.450678 True Eskimo_dog 4.302750e-01 True malamute 1.185900e-01 True
722 686003207160610816 https://pbs.twimg.com/media/CYUsRsbWAAAUt4Y.jpg 1 damselfly 0.190786 False common_newt 9.813140e-02 False whiptail 8.895820e-02 False
723 686007916130873345 https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg 1 Rhodesian_ridgeback 0.885301 True redbone 4.233540e-02 True seat_belt 1.049300e-02 False
724 686034024800862208 https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg 1 Great_Dane 0.236920 True Irish_wolfhound 1.176080e-01 True Greater_Swiss_Mountain_dog 1.039000e-01 True
725 686050296934563840 https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg 1 Pomeranian 0.985789 True keeshond 4.082910e-03 True Pekinese 3.333660e-03 True
726 686358356425093120 https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg 1 pug 0.985237 True bull_mastiff 8.840620e-03 True boxer 2.321430e-03 True
727 686377065986265092 https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg 1 German_shepherd 0.830816 True Leonberg 7.632520e-02 True bloodhound 3.744860e-02 True
728 686386521809772549 https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg 1 Yorkshire_terrier 0.477704 True silky_terrier 1.716730e-01 True Australian_terrier 8.833400e-02 True
729 686606069955735556 https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg 1 Labrador_retriever 0.320012 True Ibizan_hound 2.081720e-01 True Saluki 7.897470e-02 True
730 686618349602762752 https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg 1 Rottweiler 0.441331 True miniature_pinscher 2.331800e-01 True Gordon_setter 9.358200e-02 True
731 686683045143953408 https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg 1 Norwich_terrier 0.100499 True cocker_spaniel 8.067110e-02 True golden_retriever 7.940620e-02 True
732 686730991906516992 https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg 1 Tibetan_mastiff 0.338812 True Newfoundland 1.809250e-01 True golden_retriever 1.800230e-01 True
733 686749460672679938 https://pbs.twimg.com/media/CYfS75fWAAAllde.jpg 1 cheeseburger 0.643808 False hotdog 2.013780e-01 False bagel 6.387970e-02 False
734 686947101016735744 https://pbs.twimg.com/media/CYiGvn-UwAEe4wL.jpg 1 refrigerator 0.799795 False medicine_chest 1.825380e-01 False ice_bear 1.430580e-03 False
735 687096057537363968 https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg 1 Labrador_retriever 0.417107 True Chesapeake_Bay_retriever 3.417300e-01 True German_short-haired_pointer 1.777020e-01 True
736 687102708889812993 https://pbs.twimg.com/media/CYkURJjW8AEamoI.jpg 1 fiddler_crab 0.992069 False quail 2.490600e-03 False rock_crab 1.512570e-03 False
737 687109925361856513 https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg 2 borzoi 0.883086 True whippet 2.293360e-02 True Saluki 2.160560e-02 True
738 687124485711986689 https://pbs.twimg.com/media/CYkoE10WEAAWqxm.jpg 1 car_mirror 0.997121 False seat_belt 3.750870e-04 False beagle 2.162060e-04 True
739 687127927494963200 https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg 1 pug 0.178205 True Chihuahua 1.491640e-01 True Shih-Tzu 1.205050e-01 True
740 687312378585812992 https://pbs.twimg.com/media/CYnS9VWW8AAeR8m.jpg 1 seat_belt 0.703561 False Great_Dane 1.399090e-01 True Weimaraner 2.111250e-02 True
741 687317306314240000 https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg 1 Shih-Tzu 0.747208 True Maltese_dog 9.102540e-02 True Lhasa 3.578780e-02 True
742 687460506001633280 https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg 1 Boston_bull 0.223366 True boxer 1.835960e-01 True French_bulldog 1.769160e-01 True
743 687476254459715584 https://pbs.twimg.com/media/CYpoAZTWEAA6vDs.jpg 1 wood_rabbit 0.702725 False Angora 1.906590e-01 False hare 1.050720e-01 False
744 687480748861947905 https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg 1 English_springer 0.472273 True English_setter 1.668620e-01 True Brittany_spaniel 1.634110e-01 True
745 687494652870668288 https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg 1 Rottweiler 0.391471 True miniature_pinscher 2.735950e-01 True Tibetan_mastiff 4.169190e-02 True
746 687664829264453632 https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg 1 pug 0.957365 True French_bulldog 3.855870e-02 True toy_poodle 6.673610e-04 True
747 687704180304273409 https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg 1 miniature_pinscher 0.956063 True toy_terrier 1.223060e-02 True Chihuahua 5.397480e-03 True
748 687807801670897665 https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg 1 Staffordshire_bullterrier 0.151113 True boxer 1.356970e-01 True American_Staffordshire_terrier 8.659120e-02 True
749 687818504314159109 https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg 1 Lakeland_terrier 0.873029 True soft-coated_wheaten_terrier 6.092420e-02 True toy_poodle 1.703090e-02 True
750 687826841265172480 https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg 1 Pomeranian 0.997210 True Pekinese 8.032410e-04 True keeshond 3.725150e-04 True
751 688064179421470721 https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg 1 Eskimo_dog 0.240602 True Norwegian_elkhound 1.803690e-01 True Siberian_husky 9.073880e-02 True
752 688116655151435777 https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg 1 pug 0.973819 True Chihuahua 1.089100e-02 True Staffordshire_bullterrier 6.863890e-03 True
753 688179443353796608 https://pbs.twimg.com/media/CYznjAcUEAQ5Zq7.jpg 1 sorrel 0.811520 False horse_cart 2.482010e-02 False Arabian_camel 1.515530e-02 False
754 688211956440801280 https://pbs.twimg.com/ext_tw_video_thumb/688211379870806016/pu/img/OI0VTwPYnsScQg8R.jpg 1 bannister 0.369449 False four-poster 1.053070e-01 False shoji 9.876690e-02 False
755 688385280030670848 https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg 2 golden_retriever 0.900437 True cocker_spaniel 2.229250e-02 True sombrero 1.499680e-02 False
756 688519176466644993 https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg 1 Pembroke 0.696372 True Cardigan 1.210520e-01 True Shetland_sheepdog 5.059200e-02 True
757 688547210804498433 https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg 1 papillon 0.531279 True Blenheim_spaniel 2.141970e-01 True Border_collie 5.383990e-02 True
758 688789766343622656 https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg 1 American_Staffordshire_terrier 0.599660 True Staffordshire_bullterrier 3.809760e-01 True bull_mastiff 3.889020e-03 True
759 688804835492233216 https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg 3 malinois 0.199512 True German_shepherd 9.679730e-02 True Saluki 8.284820e-02 True
760 688828561667567616 https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg 1 Cardigan 0.614231 True skunk 1.393920e-01 False toilet_tissue 3.115820e-02 False
761 688894073864884227 https://pbs.twimg.com/media/CY9xf1dUAAE4XLc.jpg 1 hog 0.669996 False guinea_pig 7.734700e-02 False hamster 6.239820e-02 False
762 688898160958271489 https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg 1 Ibizan_hound 0.853170 True Chihuahua 3.989730e-02 True Italian_greyhound 3.521960e-02 True
763 688908934925697024 https://pbs.twimg.com/media/CY9_BOYWkAAkuzn.jpg 1 crane 0.158859 False pier 1.300160e-01 False bell_cote 8.774140e-02 False
764 688916208532455424 https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg 1 Pembroke 0.430544 True red_fox 2.065760e-01 False Pomeranian 1.543520e-01 True
765 689143371370250240 https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg 1 English_springer 0.303781 True papillon 1.651320e-01 True Welsh_springer_spaniel 1.490510e-01 True
766 689154315265683456 https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg 1 cocker_spaniel 0.816044 True golden_retriever 5.413540e-02 True Airedale 3.064810e-02 True
767 689275259254616065 https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg 1 American_Staffordshire_terrier 0.215161 True Chesapeake_Bay_retriever 7.905090e-02 True Doberman 7.022590e-02 True
768 689280876073582592 https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg 3 Chihuahua 0.637546 True American_Staffordshire_terrier 1.506940e-01 True Staffordshire_bullterrier 1.039530e-01 True
769 689283819090870273 https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg 1 Scotch_terrier 0.267979 True affenpinscher 1.996190e-01 True cairn 1.274690e-01 True
770 689289219123089408 https://pbs.twimg.com/ext_tw_video_thumb/689289176076959744/pu/img/hEFkFtmMu_hkTlxK.jpg 1 snowmobile 0.254642 False assault_rifle 1.295580e-01 False rifle 1.108750e-01 False
771 689517482558820352 https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg 1 Pembroke 0.799319 True Cardigan 1.895370e-01 True papillon 3.386190e-03 True
772 689557536375177216 https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg 1 Eskimo_dog 0.169482 True Siberian_husky 1.616550e-01 True dingo 1.544140e-01 False
773 689599056876867584 https://pbs.twimg.com/media/CZHyrvOXEAEin-A.jpg 1 dogsled 0.426494 False cocker_spaniel 7.310140e-02 True Chihuahua 7.032290e-02 True
774 689623661272240129 https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg 1 toy_poodle 0.279604 True mashed_potato 2.085640e-01 False Labrador_retriever 7.748090e-02 True
775 689659372465688576 https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg 1 bustard 0.225221 False koala 5.762530e-02 False goose 5.356890e-02 False
776 689661964914655233 https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg 1 Italian_greyhound 0.322818 True whippet 2.469660e-01 True Chihuahua 1.225410e-01 True
777 689835978131935233 https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg 1 collie 0.600186 True Shetland_sheepdog 2.989390e-01 True borzoi 2.261560e-02 True
778 689877686181715968 https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg 1 Old_English_sheepdog 0.269155 True Tibetan_terrier 1.114960e-01 True Lakeland_terrier 1.049390e-01 True
779 689905486972461056 https://pbs.twimg.com/media/CZMJYCRVAAE35Wk.jpg 4 Pomeranian 0.943331 True Shetland_sheepdog 2.367510e-02 True chow 7.164950e-03 True
780 689977555533848577 https://pbs.twimg.com/media/CZNK7NpWwAEAqUh.jpg 1 cowboy_hat 0.291081 False Labrador_retriever 1.796250e-01 True sombrero 1.214930e-01 False
781 689999384604450816 https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg 1 standard_poodle 0.444499 True English_springer 1.298300e-01 True pug 7.380570e-02 True
782 690005060500217858 https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg 1 Samoyed 0.270287 True Great_Pyrenees 1.140270e-01 True teddy 7.247480e-02 False
783 690015576308211712 https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg 2 malamute 0.949609 True Siberian_husky 3.308370e-02 True Eskimo_dog 1.666270e-02 True
784 690021994562220032 https://pbs.twimg.com/media/CZNzV6cW0AAsX7p.jpg 1 badger 0.289550 False weasel 9.914020e-02 False malamute 4.069580e-02 True
785 690248561355657216 https://pbs.twimg.com/media/CZRBZ9mWkAAWblt.jpg 1 motor_scooter 0.382690 False moped 3.180170e-01 False pickup 4.062540e-02 False
786 690360449368465409 https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg 1 pug 0.686933 True French_bulldog 7.635870e-02 True Brabancon_griffon 3.500700e-02 True
787 690374419777196032 https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg 1 kuvasz 0.286345 True Labrador_retriever 1.071440e-01 True ice_bear 8.508580e-02 False
788 690400367696297985 https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg 1 Pembroke 0.426459 True papillon 3.173680e-01 True Shetland_sheepdog 7.761600e-02 True
789 690597161306841088 https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg 1 Lhasa 0.097500 True koala 9.193390e-02 False sunglasses 9.150480e-02 False
790 690649993829576704 https://pbs.twimg.com/media/CZWugJsWYAIzVzJ.jpg 1 bighorn 0.215438 False hyena 1.379280e-01 False Mexican_hairless 9.817080e-02 True
791 690690673629138944 https://pbs.twimg.com/media/CZXTgKkWwAA5UZJ.jpg 1 bath_towel 0.194532 False radiator 1.277760e-01 False Maltese_dog 8.962460e-02 True
792 690728923253055490 https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg 1 kuvasz 0.422806 True golden_retriever 2.915860e-01 True Great_Pyrenees 7.618920e-02 True
793 690735892932222976 https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg 1 golden_retriever 0.883229 True Labrador_retriever 1.096350e-01 True kuvasz 2.795070e-03 True
794 690932576555528194 https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg 1 snorkel 0.526536 False muzzle 4.808880e-02 False scuba_diver 3.422620e-02 False
795 690938899477221376 https://pbs.twimg.com/media/CZa1QnSWEAAEOVr.jpg 1 geyser 0.370318 False seashore 2.748880e-01 False beacon 4.639700e-02 False
796 690959652130045952 https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg 2 golden_retriever 0.862964 True Labrador_retriever 4.486530e-02 True Saluki 1.246780e-02 True
797 691090071332753408 https://pbs.twimg.com/media/CZc-u7IXEAQHV1N.jpg 1 barrow 0.241637 False tub 2.384500e-01 False bathtub 1.672850e-01 False
798 691096613310316544 https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg 1 borzoi 0.441269 True llama 2.782700e-01 False Arabian_camel 6.350350e-02 False
799 691321916024623104 https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg 1 Rottweiler 0.508981 True German_shepherd 2.078970e-01 True kelpie 9.435330e-02 True
800 691416866452082688 https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg 1 Lakeland_terrier 0.530104 True Irish_terrier 1.973140e-01 True Airedale 8.251460e-02 True
801 691444869282295808 https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg 2 Bernese_mountain_dog 0.767563 True Border_collie 8.580460e-02 True EntleBucher 4.376930e-02 True
802 691459709405118465 https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg 1 Shetland_sheepdog 0.551206 True collie 2.325440e-01 True Border_collie 9.521820e-02 True
803 691483041324204033 https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg 1 bloodhound 0.886232 True black-and-tan_coonhound 7.741960e-02 True Gordon_setter 9.826430e-03 True
804 691675652215414786 https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg 1 Chihuahua 0.182898 True teddy 1.280770e-01 False West_Highland_white_terrier 9.787480e-02 True
805 691756958957883396 https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg 1 Saint_Bernard 0.342571 True boxer 2.890960e-01 True Pembroke 7.646340e-02 True
806 691820333922455552 https://pbs.twimg.com/media/CZnW7JGW0AA83mn.jpg 1 minivan 0.332756 False sports_car 1.294520e-01 False limousine 7.393590e-02 False
807 692017291282812928 https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg 1 Tibetan_terrier 0.247565 True cocker_spaniel 1.213770e-01 True bow_tie 9.936250e-02 False
808 692142790915014657 https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg 3 toy_poodle 0.670068 True teddy 1.908980e-01 False miniature_poodle 3.217790e-02 True
809 692158366030913536 https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg 1 pug 0.956565 True swing 1.890670e-02 False toy_poodle 1.354440e-02 True
810 692187005137076224 https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg 2 Siberian_husky 0.810592 True malamute 1.197450e-01 True Eskimo_dog 2.926480e-02 True
811 692417313023332352 https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg 1 bison 0.208922 False mink 1.699450e-01 False polecat 1.444940e-01 False
812 692530551048294401 https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg 1 Siberian_husky 0.486428 True Eskimo_dog 4.485180e-01 True white_wolf 4.150610e-02 False
813 692535307825213440 https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg 1 pug 0.413090 True French_bulldog 1.998650e-01 True Chihuahua 8.199060e-02 True
814 692568918515392513 https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg 2 golden_retriever 0.636845 True Labrador_retriever 1.633620e-01 True Pekinese 4.555400e-02 True
815 692752401762250755 https://pbs.twimg.com/tweet_video_thumb/CZ0mhduWkAICSGe.png 1 Samoyed 0.471276 True Siberian_husky 1.588500e-01 True Eskimo_dog 1.386720e-01 True
816 692828166163931137 https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg 1 Samoyed 0.985857 True Arctic_fox 7.851640e-03 False white_wolf 3.277700e-03 False
817 692894228850999298 https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg 1 German_short-haired_pointer 0.876977 True bluetick 3.661510e-02 True basset 1.784770e-02 True
818 692901601640583168 https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg 1 soft-coated_wheaten_terrier 0.403496 True cocker_spaniel 1.351640e-01 True golden_retriever 8.871870e-02 True
819 692905862751522816 https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg 1 Mexican_hairless 0.162638 True Doberman 1.562870e-01 True Rhodesian_ridgeback 8.147780e-02 True
820 692919143163629568 https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg 1 Saint_Bernard 0.612635 True English_springer 2.697440e-01 True boxer 4.866550e-02 True
821 693095443459342336 https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg 1 ice_lolly 0.660099 False neck_brace 3.956290e-02 False Yorkshire_terrier 3.348780e-02 True
822 693109034023534592 https://pbs.twimg.com/ext_tw_video_thumb/693108992730632192/pu/img/ncJQQZf3eroMSF12.jpg 1 cocker_spaniel 0.740013 True Welsh_springer_spaniel 8.873900e-02 True golden_retriever 4.746980e-02 True
823 693155686491000832 https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg 3 Shih-Tzu 0.697480 True Lhasa 2.001510e-01 True Tibetan_terrier 9.097040e-02 True
824 693231807727280129 https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg 1 vizsla 0.876413 True Chesapeake_Bay_retriever 7.839980e-02 True Rhodesian_ridgeback 3.219410e-02 True
825 693262851218264065 https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg 1 golden_retriever 0.989333 True Labrador_retriever 7.946440e-03 True kuvasz 7.489320e-04 True
826 693280720173801472 https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg 1 Labrador_retriever 0.340008 True bull_mastiff 1.753160e-01 True box_turtle 1.643370e-01 False
827 693486665285931008 https://pbs.twimg.com/ext_tw_video_thumb/693486485266247680/pu/img/KhapmUYPQTpbwNf8.jpg 1 sea_lion 0.519811 False Siamese_cat 2.909710e-01 False black-footed_ferret 3.996670e-02 False
828 693590843962331137 https://pbs.twimg.com/media/CaAhMb1XEAAB6Bz.jpg 1 dining_table 0.383448 False grey_fox 1.031910e-01 False Siamese_cat 9.825580e-02 False
829 693622659251335168 https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg 1 malamute 0.449298 True Siberian_husky 3.850750e-01 True Eskimo_dog 1.634850e-01 True
830 693629975228977152 https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg 1 pug 0.841987 True French_bulldog 6.979110e-02 True Boston_bull 3.871990e-02 True
831 693642232151285760 https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg 1 Scottish_deerhound 0.111893 True bluetick 7.430180e-02 True German_short-haired_pointer 6.700040e-02 True
832 693647888581312512 https://pbs.twimg.com/media/CaBVE80WAAA8sGk.jpg 1 washbasin 0.272451 False doormat 1.658710e-01 False bathtub 6.636840e-02 False
833 693942351086120961 https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg 1 groenendael 0.550796 True Norwegian_elkhound 1.547700e-01 True schipperke 8.080190e-02 True
834 694001791655137281 https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg 1 Pembroke 0.769999 True Cardigan 2.292280e-01 True Chihuahua 2.468370e-04 True
835 694183373896572928 https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg 1 teddy 0.441499 False Pekinese 8.087000e-02 True Shih-Tzu 7.209880e-02 True
836 694206574471057408 https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg 1 Shih-Tzu 0.352547 True toy_poodle 1.557200e-01 True Maltese_dog 1.166570e-01 True
837 694329668942569472 https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg 1 boxer 0.990060 True bull_mastiff 7.436270e-03 True Saint_Bernard 1.617290e-03 True
838 694352839993344000 https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg 2 Australian_terrier 0.407886 True Yorkshire_terrier 3.281730e-01 True silky_terrier 1.084040e-01 True
839 694356675654983680 https://pbs.twimg.com/media/CaLZtmsWQAApbFw.jpg 1 hamster 0.429871 False Pomeranian 1.442720e-01 True pretzel 1.272200e-01 False
840 694669722378485760 https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg 2 beaver 0.457094 False mongoose 2.282980e-01 False marmot 1.483090e-01 False
841 694905863685980160 https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg 1 bow_tie 0.449268 False fur_coat 1.390990e-01 False black-footed_ferret 8.223200e-02 False
842 695051054296211456 https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg 1 Boston_bull 0.761454 True pug 7.539490e-02 True Chihuahua 4.159780e-02 True
843 695064344191721472 https://pbs.twimg.com/ext_tw_video_thumb/695064251149508610/pu/img/0OPED0aUurb9Z16a.jpg 1 seat_belt 0.522211 False sunglasses 7.755210e-02 False ice_lolly 5.177400e-02 False
844 695074328191332352 https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg 1 Shih-Tzu 0.510106 True Tibetan_terrier 7.198090e-02 True Lhasa 6.923100e-02 True
845 695095422348574720 https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg 1 papillon 0.227784 True Chihuahua 2.181280e-01 True Border_collie 9.345740e-02 True
846 695314793360662529 https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg 2 Maltese_dog 0.678547 True Lhasa 1.250460e-01 True Pekinese 4.899880e-02 True
847 695409464418041856 https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg 1 pug 0.997445 True bull_mastiff 1.748550e-03 True Pekinese 3.044040e-04 True
848 695446424020918272 https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg 1 basenji 0.748904 True Cardigan 1.211020e-01 True Pembroke 1.117670e-01 True
849 695629776980148225 https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg 1 Old_English_sheepdog 0.693857 True otterhound 2.321170e-01 True West_Highland_white_terrier 1.286670e-02 True
850 695767669421768709 https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg 1 soft-coated_wheaten_terrier 0.805139 True Lakeland_terrier 1.216620e-01 True Afghan_hound 2.330250e-02 True
851 695794761660297217 https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg 1 Samoyed 0.962139 True Arctic_fox 3.055280e-02 False white_wolf 1.482340e-03 False
852 695816827381944320 https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg 1 Pomeranian 0.382234 True chow 2.083020e-01 True sunglasses 1.313280e-01 False
853 696405997980676096 https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg 1 borzoi 0.132845 True Walker_hound 8.600480e-02 True Great_Pyrenees 6.558230e-02 True
854 696488710901260288 https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg 1 briard 0.369063 True Scotch_terrier 1.682040e-01 True giant_schnauzer 1.205530e-01 True
855 696713835009417216 https://pbs.twimg.com/media/Cas5h-wWcAA3nAc.jpg 1 car_mirror 0.379797 False Chesapeake_Bay_retriever 3.215890e-01 True vizsla 1.169310e-01 True
856 696754882863349760 https://pbs.twimg.com/media/Cate3eLUcAEIuph.jpg 1 weasel 0.137832 False toy_poodle 9.837810e-02 True Scottish_deerhound 9.739670e-02 True
857 696877980375769088 https://pbs.twimg.com/media/CavO0uuWEAE96Ed.jpg 1 space_heater 0.206876 False spatula 1.234500e-01 False vacuum 1.192180e-01 False
858 696886256886657024 https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg 1 kuvasz 0.383941 True golden_retriever 2.890850e-01 True dingo 5.654810e-02 False
859 696894894812565505 https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg 1 Appenzeller 0.665628 True beagle 1.047950e-01 True Greater_Swiss_Mountain_dog 6.786800e-02 True
860 696900204696625153 https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg 1 Chihuahua 0.297735 True Pembroke 2.669530e-01 True basenji 1.368140e-01 True
861 697242256848379904 https://pbs.twimg.com/media/Ca0aIR9WcAAHiPy.jpg 1 grey_fox 0.236031 False Siamese_cat 1.657910e-01 False Eskimo_dog 6.353280e-02 True
862 697255105972801536 https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg 1 Great_Dane 0.173989 True malinois 1.658880e-01 True Doberman 1.198900e-01 True
863 697259378236399616 https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg 1 Great_Dane 0.999223 True boxer 1.865250e-04 True whippet 1.510710e-04 True
864 697270446429966336 https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg 1 toy_poodle 0.880014 True miniature_poodle 1.001360e-01 True Norfolk_terrier 7.027060e-03 True
865 697463031882764288 https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg 1 Labrador_retriever 0.999885 True golden_retriever 9.758170e-05 True pug 8.267760e-06 True
866 697482927769255936 https://pbs.twimg.com/media/Ca31BTgWwAA4uNU.jpg 1 bath_towel 0.110587 False Christmas_stocking 1.085730e-01 False weasel 1.054420e-01 False
867 697575480820686848 https://pbs.twimg.com/media/Ca5JMvMUsAAGMll.jpg 1 Siamese_cat 0.256698 False whippet 1.198050e-01 True bull_mastiff 1.025950e-01 True
868 697596423848730625 https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg 1 Shetland_sheepdog 0.621668 True collie 3.665780e-01 True Pembroke 7.698190e-03 True
869 697616773278015490 https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg 1 Lhasa 0.521931 True Shih-Tzu 4.034510e-01 True Tibetan_terrier 3.991220e-02 True
870 697881462549430272 https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg 1 washbasin 0.176423 False paper_towel 1.674620e-01 False toilet_tissue 9.802910e-02 False
871 697943111201378304 https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg 1 Great_Dane 0.126924 True Greater_Swiss_Mountain_dog 1.100370e-01 True German_short-haired_pointer 9.081600e-02 True
872 697990423684476929 https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg 2 Pembroke 0.984783 True Cardigan 1.501800e-02 True Shetland_sheepdog 7.358600e-05 True
873 697995514407682048 https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg 1 Staffordshire_bullterrier 0.280222 True Boston_bull 1.614780e-01 True American_Staffordshire_terrier 1.268840e-01 True
874 698178924120031232 https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg 1 Chesapeake_Bay_retriever 0.351868 True malinois 2.077530e-01 True Labrador_retriever 1.546060e-01 True
875 698195409219559425 https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg 1 Labrador_retriever 0.643690 True American_Staffordshire_terrier 1.026840e-01 True dalmatian 5.000780e-02 True
876 698262614669991936 https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg 1 Italian_greyhound 0.107948 True basset 7.523000e-02 True Staffordshire_bullterrier 6.943610e-02 True
877 698342080612007937 https://pbs.twimg.com/ext_tw_video_thumb/698341973569245184/pu/img/Sj3A2vSfbKWSv61T.jpg 1 boxer 0.883048 True Saint_Bernard 3.057940e-02 True Staffordshire_bullterrier 1.299410e-02 True
878 698355670425473025 https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg 1 pug 0.990191 True Pekinese 2.798540e-03 True sunglasses 1.309520e-03 False
879 698549713696649216 https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg 1 French_bulldog 0.998544 True Boston_bull 1.403940e-03 True boxer 2.322000e-05 True
880 698635131305795584 https://pbs.twimg.com/ext_tw_video_thumb/698635005506015234/pu/img/wQ4yFXTZ-2QLt68b.jpg 1 Samoyed 0.158464 True kuvasz 8.940250e-02 True West_Highland_white_terrier 2.503730e-02 True
881 698703483621523456 https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg 1 Brittany_spaniel 0.931963 True Welsh_springer_spaniel 3.069490e-02 True beagle 1.289610e-02 True
882 698710712454139905 https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg 1 Samoyed 0.329895 True shoji 1.657720e-01 False prison 1.035960e-01 False
883 698907974262222848 https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg 3 German_short-haired_pointer 0.983131 True bluetick 5.557720e-03 True curly-coated_retriever 3.322210e-03 True
884 698953797952008193 https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg 1 Italian_greyhound 0.382378 True redbone 1.022550e-01 True shower_cap 7.683370e-02 False
885 698989035503689728 https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg 1 Norfolk_terrier 0.246340 True Irish_terrier 2.433490e-01 True golden_retriever 8.587100e-02 True
886 699036661657767936 https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg 1 Chihuahua 0.222943 True toyshop 1.799380e-01 False Weimaraner 1.630330e-01 True
887 699072405256409088 https://pbs.twimg.com/ext_tw_video_thumb/699072391083880449/pu/img/fMp1-dvLMeio1Kzk.jpg 1 Shih-Tzu 0.599587 True Pekinese 2.130690e-01 True Maltese_dog 1.542930e-01 True
888 699079609774645248 https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg 3 schipperke 0.667324 True Chesapeake_Bay_retriever 1.195500e-01 True kelpie 9.759950e-02 True
889 699088579889332224 https://pbs.twimg.com/media/CbOpWswWEAE9kvX.jpg 1 mousetrap 0.456186 False banded_gecko 2.586770e-01 False common_iguana 6.178260e-02 False
890 699323444782047232 https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg 1 Labrador_retriever 0.309696 True doormat 3.037000e-01 False sliding_door 7.726600e-02 False
891 699370870310113280 https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg 1 cairn 0.337557 True Chihuahua 2.091300e-01 True Border_terrier 1.369460e-01 True
892 699413908797464576 https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg 1 Samoyed 0.517479 True malamute 1.559350e-01 True Eskimo_dog 9.500090e-02 True
893 699423671849451520 https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg 1 pug 0.997860 True French_bulldog 1.824860e-03 True bull_mastiff 2.989400e-04 True
894 699434518667751424 https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg 1 golden_retriever 0.836572 True kuvasz 1.059460e-01 True Labrador_retriever 2.514390e-02 True
895 699446877801091073 https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg 3 Pembroke 0.969400 True Cardigan 2.605880e-02 True Chihuahua 3.505470e-03 True
896 699691744225525762 https://pbs.twimg.com/media/CbXN7aPWIAE0Xt1.jpg 1 hippopotamus 0.982269 False sea_lion 6.295150e-03 False dugong 5.767950e-03 False
897 699775878809702401 https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg 1 Dandie_Dinmont 0.271683 True Old_English_sheepdog 1.649310e-01 True otterhound 1.059180e-01 True
898 699779630832685056 https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg 1 malinois 0.706038 True German_shepherd 1.656550e-01 True Great_Dane 5.904750e-02 True
899 699788877217865730 https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg 1 Border_terrier 0.355060 True toy_poodle 1.697360e-01 True Norwegian_elkhound 9.988370e-02 True
900 699801817392291840 https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg 2 golden_retriever 0.808978 True Irish_setter 4.242810e-02 True Labrador_retriever 2.353640e-02 True
901 700002074055016451 https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg 1 Chihuahua 0.369488 True schipperke 2.433670e-01 True pug 1.616140e-01 True
902 700029284593901568 https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg 1 West_Highland_white_terrier 0.726571 True Maltese_dog 1.768280e-01 True Dandie_Dinmont 7.013380e-02 True
903 700062718104104960 https://pbs.twimg.com/media/CbcfUxoUAAAlHGK.jpg 1 hummingbird 0.180998 False peacock 1.351790e-01 False eel 7.537100e-02 False
904 700143752053182464 https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg 1 golden_retriever 0.532460 True crossword_puzzle 1.037960e-01 False binder 1.003710e-01 False
905 700151421916807169 https://pbs.twimg.com/media/CbdwATgWwAABGID.jpg 1 tennis_ball 0.328236 False Italian_greyhound 1.768380e-01 True Staffordshire_bullterrier 1.340800e-01 True
906 700167517596164096 https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg 1 beagle 0.162585 True Pembroke 1.204810e-01 True Siberian_husky 1.102840e-01 True
907 700462010979500032 https://pbs.twimg.com/media/CbiKe7-W0AIVNNr.jpg 1 hamster 0.678651 False Pomeranian 1.102680e-01 True Angora 1.041390e-01 False
908 700505138482569216 https://pbs.twimg.com/media/Cbixs3vUUAAqHHN.jpg 1 bath_towel 0.449684 False Norwegian_elkhound 1.602050e-01 True Great_Dane 4.866580e-02 True
909 700518061187723268 https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg 1 American_Staffordshire_terrier 0.569501 True Staffordshire_bullterrier 2.113080e-01 True Chihuahua 1.218390e-01 True
910 700747788515020802 https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg 1 Great_Pyrenees 0.481333 True Samoyed 3.117690e-01 True Maltese_dog 7.496210e-02 True
911 700796979434098688 https://pbs.twimg.com/media/Cbm7IeUXIAA6Lc-.jpg 1 tailed_frog 0.652712 False tree_frog 2.802120e-01 False bullfrog 4.017750e-02 False
912 700847567345688576 https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg 1 Rhodesian_ridgeback 0.252514 True redbone 1.530050e-01 True whippet 1.351990e-01 True
913 700864154249383937 https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg 1 kuvasz 0.805857 True Great_Pyrenees 1.872720e-01 True Samoyed 3.490900e-03 True
914 700890391244103680 https://pbs.twimg.com/media/CboQFolWIAE04qE.jpg 1 white_wolf 0.166563 False schipperke 1.223560e-01 True West_Highland_white_terrier 1.192470e-01 True
915 701214700881756160 https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg 1 Chihuahua 0.615163 True Pembroke 1.595090e-01 True basenji 8.446570e-02 True
916 701545186879471618 https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg 1 Border_collie 0.280893 True Cardigan 1.125500e-01 True toy_terrier 5.331720e-02 True
917 701570477911896070 https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg 1 Yorkshire_terrier 0.907990 True silky_terrier 7.688290e-02 True Australian_terrier 8.472760e-03 True
918 701601587219795968 https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg 1 Chihuahua 0.993661 True Pembroke 1.504870e-03 True toy_terrier 8.666070e-04 True
919 701889187134500865 https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg 1 French_bulldog 0.902856 True Staffordshire_bullterrier 2.263410e-02 True soap_dispenser 1.197320e-02 False
920 701952816642965504 https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg 1 toy_poodle 0.331707 True miniature_poodle 2.724850e-01 True standard_poodle 1.694150e-01 True
921 701981390485725185 https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg 1 Pomeranian 0.491022 True weasel 1.308790e-01 False Yorkshire_terrier 9.924100e-02 True
922 702217446468493312 https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg 1 golden_retriever 0.242419 True chow 2.268000e-01 True cocker_spaniel 1.940860e-01 True
923 702276748847800320 https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg 1 Boston_bull 0.697303 True French_bulldog 2.390150e-01 True American_Staffordshire_terrier 1.983810e-02 True
924 702321140488925184 https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg 3 West_Highland_white_terrier 0.769159 True Scotch_terrier 6.436880e-02 True Old_English_sheepdog 4.376340e-02 True
925 702539513671897089 https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg 3 Pomeranian 0.714367 True Shih-Tzu 4.057410e-02 True silky_terrier 3.251050e-02 True
926 702598099714314240 https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg 1 kelpie 0.219179 True badger 1.335840e-01 False Siamese_cat 7.444000e-02 False
927 702671118226825216 https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg 1 bloodhound 0.381227 True Sussex_spaniel 2.120170e-01 True clumber 1.286220e-01 True
928 702684942141153280 https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg 1 golden_retriever 0.514085 True Chesapeake_Bay_retriever 1.732240e-01 True Brittany_spaniel 1.183840e-01 True
929 702932127499816960 https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg 1 wallaby 0.410710 False wombat 2.393320e-01 False beaver 1.496050e-01 False
930 703041949650034688 https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg 1 hippopotamus 0.581403 False doormat 1.524450e-01 False sea_lion 2.636430e-02 False
931 703079050210877440 https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg 2 Pembroke 0.778503 True Shetland_sheepdog 9.383390e-02 True Cardigan 6.029640e-02 True
932 703268521220972544 https://pbs.twimg.com/media/CcKC-5LW4AAK-nb.jpg 1 wool 0.525434 False fur_coat 2.363910e-01 False kuvasz 3.824300e-02 True
933 703356393781329922 https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg 1 Border_collie 0.894842 True collie 9.736370e-02 True English_springer 3.036740e-03 True
934 703382836347330562 https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg 2 golden_retriever 0.945664 True standard_poodle 1.439200e-02 True Tibetan_mastiff 1.202170e-02 True
935 703407252292673536 https://pbs.twimg.com/media/CcMBJODUsAI5-A9.jpg 1 doormat 0.201058 False turnstile 8.858320e-02 False carton 8.292380e-02 False
936 703425003149250560 https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg 1 miniature_pinscher 0.292866 True sleeping_bag 1.421220e-01 False Italian_greyhound 7.084900e-02 True
937 703611486317502464 https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg 1 Pembroke 0.756441 True basenji 1.266210e-01 True Cardigan 8.011670e-02 True
938 703631701117943808 https://pbs.twimg.com/media/CcPNS4yW8AAd-Et.jpg 2 window_shade 0.909533 False window_screen 1.142660e-02 False brass 8.882100e-03 False
939 703769065844768768 https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg 2 boxer 0.838994 True Greater_Swiss_Mountain_dog 8.880030e-02 True bull_mastiff 3.168390e-02 True
940 703774238772166656 https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg 1 Labrador_retriever 0.990119 True Chesapeake_Bay_retriever 8.025580e-03 True curly-coated_retriever 1.242290e-03 True
941 704054845121142784 https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg 1 Great_Pyrenees 0.667939 True kuvasz 2.287640e-01 True golden_retriever 4.388540e-02 True
942 704113298707505153 https://pbs.twimg.com/media/CcWDTerUAAALORn.jpg 2 otter 0.945537 False mink 1.823110e-02 False sea_lion 1.586080e-02 False
943 704347321748819968 https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg 1 teddy 0.233378 False feather_boa 8.847440e-02 False Brittany_spaniel 8.291730e-02 True
944 704364645503647744 https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg 1 Pembroke 0.980695 True Cardigan 1.850440e-02 True Chihuahua 2.152930e-04 True
945 704480331685040129 https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg 1 Samoyed 0.979206 True Pomeranian 7.185400e-03 True Arctic_fox 6.438090e-03 False
946 704499785726889984 https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg 1 Chihuahua 0.376541 True Siamese_cat 9.805710e-02 False Labrador_retriever 8.521090e-02 True
947 704761120771465216 https://pbs.twimg.com/media/CcfQgHVWoAAxauy.jpg 1 Siamese_cat 0.202294 False Chihuahua 1.004180e-01 True basenji 7.209650e-02 True
948 704819833553219584 https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg 1 guinea_pig 0.994776 False hamster 4.068790e-03 False wood_rabbit 2.058690e-04 False
949 704847917308362754 https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg 1 golden_retriever 0.857240 True Labrador_retriever 1.354600e-01 True Tibetan_mastiff 1.903320e-03 True
950 704859558691414016 https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg 1 pug 0.284428 True teddy 1.563390e-01 False mitten 1.389150e-01 False
951 704871453724954624 https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg 1 Norfolk_terrier 0.689504 True soft-coated_wheaten_terrier 1.014800e-01 True Norwich_terrier 5.577850e-02 True
952 705066031337840642 https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg 1 Airedale 0.868658 True Irish_terrier 2.758710e-02 True otterhound 2.532360e-02 True
953 705102439679201280 https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg 1 collie 0.457672 True chow 2.791010e-01 True Pomeranian 7.692230e-02 True
954 705223444686888960 https://pbs.twimg.com/media/Ccl0-HVVAAAf8aK.jpg 1 Egyptian_cat 0.090508 False Chesapeake_Bay_retriever 7.737330e-02 True Mexican_hairless 4.947150e-02 True
955 705239209544720384 https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg 1 Chihuahua 0.157950 True toy_terrier 8.992030e-02 True Mexican_hairless 6.322450e-02 True
956 705428427625635840 https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg 1 Chihuahua 0.774792 True quilt 7.307940e-02 False Pembroke 2.236510e-02 True
957 705442520700944385 https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg 1 Great_Pyrenees 0.309106 True kuvasz 2.245560e-01 True seat_belt 2.021000e-01 False
958 705475953783398401 https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg 1 golden_retriever 0.908784 True Labrador_retriever 3.036120e-02 True tennis_ball 4.995620e-03 False
959 705591895322394625 https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg 1 basenji 0.877207 True Italian_greyhound 4.785420e-02 True miniature_pinscher 3.563810e-02 True
960 705786532653883392 https://pbs.twimg.com/media/Cct1G6vVAAI9ZjF.jpg 1 web_site 0.550294 False Labrador_retriever 1.484960e-01 True golden_retriever 1.484820e-01 True
961 705898680587526145 https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg 1 collie 0.808276 True Border_collie 5.943700e-02 True groenendael 2.672030e-02 True
962 705970349788291072 https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg 1 golden_retriever 0.776346 True Labrador_retriever 1.124130e-01 True chow 3.695290e-02 True
963 705975130514706432 https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg 1 Staffordshire_bullterrier 0.587764 True American_Staffordshire_terrier 2.814290e-01 True bull_mastiff 9.479810e-02 True
964 706166467411222528 https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg 1 Samoyed 0.430418 True kuvasz 2.796000e-01 True Great_Pyrenees 1.174800e-01 True
965 706265994973601792 https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg 1 papillon 0.743715 True Pekinese 1.140420e-01 True Saint_Bernard 4.771520e-02 True
966 706291001778950144 https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg 1 Border_terrier 0.587101 True bull_mastiff 1.640870e-01 True Staffordshire_bullterrier 1.050110e-01 True
967 706310011488698368 https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg 1 Pembroke 0.698165 True Chihuahua 1.058340e-01 True bloodhound 6.203040e-02 True
968 706346369204748288 https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg 1 Tibetan_mastiff 0.956462 True Rottweiler 2.538090e-02 True Appenzeller 8.679210e-03 True
969 706516534877929472 https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg 1 golden_retriever 0.772685 True Labrador_retriever 7.166530e-02 True golfcart 2.099310e-02 False
970 706538006853918722 https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg 1 chow 0.541794 True Pembroke 9.491840e-02 True Pomeranian 8.543940e-02 True
971 706593038911545345 https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg 1 four-poster 0.696423 False quilt 1.893120e-01 False pillow 2.940880e-02 False
972 706644897839910912 https://pbs.twimg.com/ext_tw_video_thumb/706644797256241152/pu/img/NTqvmIUQExGmKFSR.jpg 1 space_heater 0.137871 False Chihuahua 1.329280e-01 True cougar 1.138660e-01 False
973 706681918348251136 https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg 1 toy_poodle 0.717584 True miniature_poodle 1.514330e-01 True Norwich_terrier 4.708700e-02 True
974 706901761596989440 https://pbs.twimg.com/media/Cc9rZlBWwAA56Ra.jpg 1 wild_boar 0.859499 False hog 1.289810e-01 False warthog 1.131780e-02 False
975 707014260413456384 https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg 1 Chihuahua 0.583780 True Italian_greyhound 1.296830e-01 True toy_terrier 8.915270e-02 True
976 707021089608753152 https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg 2 cocker_spaniel 0.559658 True golden_retriever 3.146730e-01 True Pekinese 6.667170e-02 True
977 707038192327901184 https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg 1 pug 0.642426 True llama 5.730620e-02 False French_bulldog 5.418650e-02 True
978 707059547140169728 https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg 1 Samoyed 0.897312 True Great_Pyrenees 3.918020e-02 True kuvasz 1.951600e-02 True
979 707297311098011648 https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg 1 Blenheim_spaniel 0.370717 True Shih-Tzu 2.015660e-01 True black-footed_ferret 1.015590e-01 False
980 707315916783140866 https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg 2 Bernese_mountain_dog 0.979235 True Shetland_sheepdog 1.103680e-02 True Appenzeller 3.971110e-03 True
981 707377100785885184 https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg 1 golden_retriever 0.637225 True bloodhound 9.454210e-02 True cocker_spaniel 6.979710e-02 True
982 707387676719185920 https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg 1 Chihuahua 0.888468 True Italian_greyhound 8.863460e-02 True toy_terrier 1.593830e-02 True
983 707411934438625280 https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg 1 Lakeland_terrier 0.738277 True Airedale 2.851490e-02 True giant_schnauzer 2.487630e-02 True
984 707420581654872064 https://pbs.twimg.com/media/CdFDQVgWIAArslx.jpg 1 ram 0.518215 False kuvasz 1.493910e-01 True Great_Pyrenees 1.060030e-01 True
985 707610948723478529 https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg 1 golden_retriever 0.383223 True cocker_spaniel 1.659300e-01 True Chesapeake_Bay_retriever 1.181990e-01 True
986 707693576495472641 https://pbs.twimg.com/media/CdI7jDnW0AA2dtO.jpg 1 bathtub 0.499525 False tub 4.880140e-01 False washbasin 9.298250e-03 False
987 707741517457260545 https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg 1 whippet 0.738371 True Italian_greyhound 1.917890e-01 True American_Staffordshire_terrier 2.012570e-02 True
988 707776935007539200 https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg 1 miniature_pinscher 0.890426 True toy_terrier 5.133470e-02 True Chihuahua 1.801530e-02 True
989 707969809498152960 https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg 1 toy_poodle 0.908491 True miniature_poodle 8.265160e-02 True teddy 5.786130e-03 False
990 707995814724026368 https://pbs.twimg.com/media/CdNOb17WwAA5z4A.jpg 1 agama 0.172087 False Gila_monster 1.269780e-01 False lumbermill 5.040000e-02 False
991 708026248782585858 https://pbs.twimg.com/ext_tw_video_thumb/708026062568087553/pu/img/rNhylAwIfb6YthGu.jpg 1 malinois 0.786468 True Chesapeake_Bay_retriever 6.897890e-02 True Siamese_cat 2.930440e-02 False
992 708109389455101952 https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg 1 Staffordshire_bullterrier 0.516106 True American_Staffordshire_terrier 2.360750e-01 True kelpie 6.974950e-02 True
993 708119489313951744 https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg 1 Norwich_terrier 0.264483 True Norfolk_terrier 2.587860e-01 True chow 9.689870e-02 True
994 708130923141795840 https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg 1 French_bulldog 0.710354 True Chihuahua 2.623020e-01 True Cardigan 6.903820e-03 True
995 708149363256774660 https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg 1 Cardigan 0.350993 True basset 1.645550e-01 True toy_terrier 8.048360e-02 True
996 708349470027751425 https://pbs.twimg.com/media/CdSQFWOWAAApgfq.jpg 1 muzzle 0.243890 False basenji 1.871580e-01 True Boston_bull 9.272700e-02 True
997 708356463048204288 https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg 2 pug 0.871283 True French_bulldog 4.182000e-02 True bath_towel 1.522800e-02 False
998 708469915515297792 https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg 1 Chihuahua 0.748163 True toy_terrier 1.277170e-01 True Pembroke 4.214100e-02 True
999 708479650088034305 https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg 1 Shih-Tzu 0.218479 True Lhasa 2.019660e-01 True Norfolk_terrier 1.652250e-01 True
1000 708711088997666817 https://pbs.twimg.com/media/CdXY-GHWoAALing.jpg 2 tennis_ball 0.912961 False German_short-haired_pointer 5.269460e-02 True Labrador_retriever 1.847740e-02 True
1001 708738143638450176 https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg 1 Pomeranian 0.933457 True Samoyed 5.722080e-02 True West_Highland_white_terrier 9.041510e-04 True
1002 708810915978854401 https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg 2 golden_retriever 0.976139 True Labrador_retriever 1.630090e-02 True Norfolk_terrier 1.871370e-03 True
1003 708834316713893888 https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg 1 Eskimo_dog 0.283945 True giant_panda 2.182520e-01 False malamute 1.804010e-01 True
1004 708845821941387268 https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg 1 schipperke 0.745640 True kelpie 1.678530e-01 True Boston_bull 1.476290e-02 True
1005 709042156699303936 https://pbs.twimg.com/media/CdcGBB3WwAAGBuU.jpg 1 hotdog 0.826579 False Rottweiler 6.817930e-02 True Labrador_retriever 4.921790e-02 True
1006 709158332880297985 https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg 1 Siberian_husky 0.212957 True Eskimo_dog 1.788870e-01 True Labrador_retriever 1.742180e-01 True
1007 709198395643068416 https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg 1 borzoi 0.490783 True wire-haired_fox_terrier 8.351330e-02 True English_setter 8.318430e-02 True
1008 709207347839836162 https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg 1 Chihuahua 0.948323 True Italian_greyhound 1.773030e-02 True quilt 1.668790e-02 False
1009 709225125749587968 https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg 1 Labrador_retriever 0.271109 True Pomeranian 1.504870e-01 True golden_retriever 1.455780e-01 True
1010 709409458133323776 https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg 1 Shetland_sheepdog 0.797450 True collie 5.405530e-02 True keeshond 3.167330e-02 True
1011 709449600415961088 https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg 2 Maltese_dog 0.780187 True Dandie_Dinmont 7.442870e-02 True Norfolk_terrier 3.377620e-02 True
1012 709519240576036864 https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg 1 cocker_spaniel 0.414982 True Newfoundland 2.254820e-01 True flat-coated_retriever 1.967890e-01 True
1013 709556954897764353 https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg 2 golden_retriever 0.790026 True kuvasz 1.050310e-01 True Labrador_retriever 8.705120e-02 True
1014 709566166965075968 https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg 1 chow 0.999837 True Tibetan_mastiff 1.169070e-04 True Australian_terrier 1.133840e-05 True
1015 709852847387627521 https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg 2 Chihuahua 0.945629 True Pomeranian 1.920360e-02 True West_Highland_white_terrier 1.013420e-02 True
1016 709901256215666688 https://pbs.twimg.com/media/CdoTbL_XIAAitq2.jpg 2 bib 0.998814 False handkerchief 5.117730e-04 False umbrella 2.244770e-04 False
1017 709918798883774466 https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg 2 Pembroke 0.956222 True Cardigan 2.072730e-02 True Chihuahua 7.912180e-03 True
1018 710117014656950272 https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg 2 toy_poodle 0.802092 True miniature_poodle 1.116470e-01 True cocker_spaniel 6.286620e-02 True
1019 710140971284037632 https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg 1 Pekinese 0.953170 True papillon 1.951690e-02 True Japanese_spaniel 5.820510e-03 True
1020 710153181850935296 https://pbs.twimg.com/media/Cdr4jO2UAAAIo6W.jpg 2 cowboy_hat 0.979053 False sombrero 1.068250e-02 False cocker_spaniel 2.712960e-03 True
1021 710269109699739648 https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg 1 pug 0.415495 True German_shepherd 1.781570e-01 True Labrador_retriever 1.002020e-01 True
1022 710272297844797440 https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg 1 Old_English_sheepdog 0.586307 True wire-haired_fox_terrier 1.186220e-01 True Lakeland_terrier 1.068060e-01 True
1023 710283270106132480 https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg 2 Shih-Tzu 0.932401 True Lhasa 3.080570e-02 True Tibetan_terrier 8.974280e-03 True
1024 710588934686908417 https://pbs.twimg.com/media/CdyE2x1W8AAe0TG.jpg 4 Pembroke 0.982004 True Cardigan 8.943470e-03 True malamute 7.549900e-03 True
1025 710658690886586372 https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg 1 soft-coated_wheaten_terrier 0.948617 True Dandie_Dinmont 1.866440e-02 True cairn 1.594270e-02 True
1026 710833117892898816 https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg 1 Pembroke 0.803742 True Cardigan 1.897120e-01 True German_shepherd 1.746090e-03 True
1027 710844581445812225 https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg 1 dingo 0.536593 False Pembroke 2.004070e-01 True basenji 6.073450e-02 True
1028 710997087345876993 https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg 1 malamute 0.281260 True Eskimo_dog 2.326410e-01 True Pembroke 9.160200e-02 True
1029 711008018775851008 https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg 1 French_bulldog 0.731405 True Boston_bull 1.506720e-01 True pug 2.181090e-02 True
1030 711306686208872448 https://pbs.twimg.com/media/Cd8Rpl0W0AAN1kU.jpg 1 leatherback_turtle 0.280835 False loggerhead 1.232900e-01 False Dandie_Dinmont 8.679250e-02 True
1031 711363825979756544 https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg 1 Pembroke 0.750906 True Cardigan 2.411520e-01 True basenji 2.639620e-03 True
1032 711652651650457602 https://pbs.twimg.com/media/CeBMT6-WIAA7Qqf.jpg 1 llama 0.856789 False Arabian_camel 9.872700e-02 False neck_brace 1.637720e-02 False
1033 711694788429553666 https://pbs.twimg.com/tweet_video_thumb/CeBym7oXEAEWbEg.jpg 1 brown_bear 0.713293 False Indian_elephant 1.728440e-01 False water_buffalo 3.890220e-02 False
1034 711732680602345472 https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg 3 dingo 0.366875 False Ibizan_hound 3.349290e-01 True Eskimo_dog 7.387620e-02 True
1035 711743778164514816 https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg 1 Lakeland_terrier 0.459515 True miniature_poodle 2.196610e-01 True standard_poodle 1.301890e-01 True
1036 711968124745228288 https://pbs.twimg.com/media/CeFrO3qXEAADRbd.jpg 1 espresso 0.430135 False coffee_mug 4.184830e-01 False cup 8.839120e-02 False
1037 711998809858043904 https://pbs.twimg.com/tweet_video_thumb/CeGGkWuUUAAYWU1.jpg 1 comic_book 0.105171 False kuvasz 5.989510e-02 True book_jacket 4.663810e-02 False
1038 712065007010385924 https://pbs.twimg.com/media/CeHDV73W0AM5Cf8.jpg 1 goose 0.214301 False gibbon 8.425300e-02 False pizza 8.016830e-02 False
1039 712085617388212225 https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg 2 Shih-Tzu 0.625129 True Tibetan_terrier 1.268970e-01 True Lhasa 1.196630e-01 True
1040 712092745624633345 https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg 1 triceratops 0.235373 False llama 1.531260e-01 False three-toed_sloth 1.118400e-01 False
1041 712097430750289920 https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg 1 Labrador_retriever 0.720481 True whippet 4.803180e-02 True Chesapeake_Bay_retriever 4.504640e-02 True
1042 712438159032893441 https://pbs.twimg.com/media/CeMWubMWwAA6GwF.jpg 1 ice_bear 0.869477 False Great_Pyrenees 6.945700e-02 True Labrador_retriever 2.474000e-02 True
1043 712668654853337088 https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg 1 Labrador_retriever 0.829058 True golden_retriever 3.866450e-02 True Chihuahua 2.622140e-02 True
1044 712717840512598017 https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg 1 Great_Pyrenees 0.732043 True kuvasz 1.213750e-01 True Irish_wolfhound 4.952370e-02 True
1045 712809025985978368 https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg 1 Labrador_retriever 0.868671 True carton 9.509520e-02 False pug 7.651370e-03 True
1046 713175907180089344 https://pbs.twimg.com/media/CeW1tERWAAAA9Q2.jpg 1 timber_wolf 0.503788 False malamute 4.306240e-01 True Siberian_husky 2.845420e-02 True
1047 713177543487135744 https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg 1 whippet 0.734244 True basenji 2.594800e-02 True Great_Dane 2.587430e-02 True
1048 713411074226274305 https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg 1 Great_Pyrenees 0.720337 True Samoyed 1.295420e-01 True kuvasz 1.224510e-01 True
1049 713761197720473600 https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg 1 Brittany_spaniel 0.797936 True English_springer 4.471820e-02 True Welsh_springer_spaniel 3.791070e-02 True
1050 713900603437621249 https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg 1 golden_retriever 0.371816 True cocker_spaniel 1.774130e-01 True Irish_setter 9.272520e-02 True
1051 713919462244790272 https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg 1 Siberian_husky 0.463223 True Eskimo_dog 3.899590e-01 True malamute 9.796270e-02 True
1052 714141408463036416 https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg 1 Labrador_retriever 0.586951 True golden_retriever 3.788120e-01 True redbone 3.604890e-03 True
1053 714214115368108032 https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg 1 pug 0.533967 True bloodhound 1.648260e-01 True German_shepherd 4.652400e-02 True
1054 714251586676113411 https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg 2 soft-coated_wheaten_terrier 0.751962 True Bedlington_terrier 1.756520e-01 True Great_Pyrenees 1.145240e-02 True
1055 714258258790387713 https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg 1 collie 0.176758 True Chesapeake_Bay_retriever 1.018340e-01 True beagle 1.012940e-01 True
1056 714606013974974464 https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg 1 Norfolk_terrier 0.293007 True Labrador_retriever 2.561980e-01 True golden_retriever 1.296430e-01 True
1057 714631576617938945 https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg 1 meerkat 0.143497 False weasel 1.174020e-01 False black-footed_ferret 9.993270e-02 False
1058 714957620017307648 https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg 1 Great_Pyrenees 0.251516 True Samoyed 1.393460e-01 True kuvasz 1.290050e-01 True
1059 714982300363173890 https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg 1 Brittany_spaniel 0.944376 True beagle 2.543530e-02 True Ibizan_hound 9.962040e-03 True
1060 715009755312439296 https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg 1 dingo 0.310903 False Chihuahua 1.422880e-01 True Cardigan 1.039450e-01 True
1061 715200624753819648 https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg 1 Chihuahua 0.956787 True beagle 8.382870e-03 True Labrador_retriever 8.344090e-03 True
1062 715220193576927233 https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg 1 Chihuahua 0.584026 True Italian_greyhound 3.770770e-01 True Boston_bull 1.740040e-02 True
1063 715342466308784130 https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg 1 West_Highland_white_terrier 0.597111 True soft-coated_wheaten_terrier 1.429930e-01 True Lakeland_terrier 1.367120e-01 True
1064 715360349751484417 https://pbs.twimg.com/media/Ce14cOvWwAAcFJH.jpg 1 nail 0.855552 False screw 7.327730e-02 False padlock 2.397040e-02 False
1065 715680795826982913 https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg 1 golden_retriever 0.990715 True Labrador_retriever 2.228340e-03 True chow 1.197150e-03 True
1066 715696743237730304 https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg 1 Staffordshire_bullterrier 0.427836 True pug 2.214090e-01 True French_bulldog 1.321350e-01 True
1067 715733265223708672 https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg 1 Dandie_Dinmont 0.740229 True miniature_poodle 8.191510e-02 True toy_poodle 6.374850e-02 True
1068 715928423106027520 https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg 1 pug 0.976685 True French_bulldog 1.966260e-02 True bull_mastiff 2.278190e-03 True
1069 716080869887381504 https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg 1 golden_retriever 0.638625 True chow 2.547170e-01 True Tibetan_mastiff 7.173170e-02 True
1070 716285507865542656 https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg 1 Yorkshire_terrier 0.430420 True silky_terrier 1.967690e-01 True cairn 7.267610e-02 True
1071 716439118184652801 https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg 1 Siberian_husky 0.396495 True malamute 3.170530e-01 True Eskimo_dog 2.734190e-01 True
1072 716791146589110272 https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg 1 Pomeranian 0.468751 True seat_belt 1.546520e-01 False golden_retriever 1.250170e-01 True
1073 716802964044845056 https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg 2 malinois 0.619577 True Leonberg 1.180890e-01 True bull_mastiff 6.650780e-02 True
1074 717009362452090881 https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg 1 Siberian_husky 0.506154 True Eskimo_dog 2.696560e-01 True malamute 6.065850e-02 True
1075 717047459982213120 https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg 1 golden_retriever 0.983548 True Labrador_retriever 1.218540e-02 True cocker_spaniel 2.412030e-03 True
1076 717421804990701568 https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg 2 miniature_pinscher 0.286479 True Italian_greyhound 8.413390e-02 True beagle 6.469700e-02 True
1077 717537687239008257 https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg 1 golden_retriever 0.779356 True Labrador_retriever 5.251140e-02 True kuvasz 4.981050e-02 True
1078 717790033953034240 https://pbs.twimg.com/media/CfYaOeMWQAAGfyP.jpg 1 car_mirror 0.819106 False minibus 1.073830e-01 False cab 3.484640e-02 False
1079 717841801130979328 https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg 1 Brittany_spaniel 0.922876 True English_springer 7.011350e-02 True bath_towel 2.560790e-03 False
1080 718234618122661888 https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg 1 malamute 0.370152 True Siberian_husky 3.563980e-01 True Eskimo_dog 2.710420e-01 True
1081 718246886998687744 https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg 1 Chihuahua 0.354488 True carton 1.596720e-01 False Siberian_husky 5.749830e-02 True
1082 718454725339934721 https://pbs.twimg.com/media/Cfh2w6HWIAIIYAF.jpg 1 hammer 0.169865 False hatchet 1.157440e-01 False chime 6.809160e-02 False
1083 718460005985447936 https://pbs.twimg.com/media/Cfh7j6CWQAAndTd.jpg 1 badger 0.356946 False Boston_bull 2.527810e-01 True kelpie 1.134330e-01 True
1084 718540630683709445 https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg 2 Maltese_dog 0.632289 True West_Highland_white_terrier 1.870550e-01 True cairn 4.441290e-02 True
1085 718613305783398402 https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg 1 Labrador_retriever 0.584580 True German_short-haired_pointer 3.406570e-01 True Chesapeake_Bay_retriever 3.197510e-02 True
1086 718631497683582976 https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg 1 Pomeranian 0.993718 True Pekinese 3.610830e-03 True Persian_cat 5.248230e-04 False
1087 718939241951195136 https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg 1 Pembroke 0.766327 True Cardigan 2.221260e-01 True toilet_tissue 6.757230e-03 False
1088 718971898235854848 https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg 1 golden_retriever 0.140394 True Saint_Bernard 1.187690e-01 True Labrador_retriever 7.549170e-02 True
1089 719332531645071360 https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg 1 Dandie_Dinmont 0.224415 True miniature_poodle 2.048820e-01 True Norfolk_terrier 9.063290e-02 True
1090 719339463458033665 https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg 1 golden_retriever 0.765778 True borzoi 7.114810e-02 True Leonberg 7.037050e-02 True
1091 719367763014393856 https://pbs.twimg.com/media/Cfu1KSRXEAACC5X.jpg 1 swing 0.171486 False soft-coated_wheaten_terrier 5.097100e-02 True Tibetan_terrier 4.775940e-02 True
1092 719551379208073216 https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg 1 malamute 0.873233 True Siberian_husky 7.643540e-02 True Eskimo_dog 3.574500e-02 True
1093 719704490224398336 https://pbs.twimg.com/media/CfznaXuUsAAH-py.jpg 1 home_theater 0.059033 False window_shade 3.829900e-02 False bathtub 3.552820e-02 False
1094 719991154352222208 https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg 2 golden_retriever 0.605304 True cocker_spaniel 1.309480e-01 True Labrador_retriever 9.469160e-02 True
1095 720043174954147842 https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg 1 Samoyed 0.954517 True Eskimo_dog 2.912960e-02 True white_wolf 4.462030e-03 False
1096 720059472081784833 https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg 1 Mexican_hairless 0.451852 True redbone 2.548840e-01 True Italian_greyhound 9.481810e-02 True
1097 720340705894408192 https://pbs.twimg.com/media/Cf8qDFbWwAEf8M3.jpg 1 alp 0.320126 False lawn_mower 8.080770e-02 False viaduct 6.532100e-02 False
1098 720389942216527872 https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg 1 Pembroke 0.873977 True Cardigan 4.333850e-02 True Eskimo_dog 1.919710e-02 True
1099 720415127506415616 https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg 1 Rottweiler 0.990312 True black-and-tan_coonhound 2.494780e-03 True American_black_bear 1.733120e-03 False
1100 720775346191278080 https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg 1 Newfoundland 0.489970 True groenendael 1.744970e-01 True giant_schnauzer 7.906670e-02 True
1101 720785406564900865 https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg 1 Chihuahua 0.896422 True dingo 2.792940e-02 False kelpie 1.791580e-02 True
1102 721001180231503872 https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg 1 Samoyed 0.950053 True washbasin 6.321390e-03 False tub 6.243350e-03 False
1103 721503162398597120 https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg 3 Pomeranian 0.997750 True Chihuahua 1.248000e-03 True Pekinese 7.750020e-04 True
1104 722613351520608256 https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg 1 Labrador_retriever 0.530915 True golden_retriever 2.882300e-01 True chow 4.485370e-02 True
1105 722974582966214656 https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg 1 Great_Dane 0.246762 True Greater_Swiss_Mountain_dog 1.261310e-01 True Weimaraner 8.529690e-02 True
1106 723179728551723008 https://pbs.twimg.com/media/CglAHjAUgAAfxcq.jpg 1 tennis_ball 0.176495 False badger 5.990520e-02 False Norwegian_elkhound 5.685050e-02 True
1107 723673163800948736 https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg 1 golden_retriever 0.839390 True Labrador_retriever 6.570580e-02 True hand_blower 1.294100e-02 False
1108 723688335806480385 https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg 2 teddy 0.263256 False chow 8.901020e-02 True Irish_terrier 6.530570e-02 True
1109 723912936180330496 https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg 1 Samoyed 0.991772 True Pomeranian 3.626380e-03 True chow 2.231830e-03 True
1110 724004602748780546 https://pbs.twimg.com/media/CgwuWCeW4AAsgbD.jpg 3 Siamese_cat 0.950526 False pug 1.887690e-02 True quilt 7.627600e-03 False
1111 724046343203856385 https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg 1 boxer 0.826272 True bull_mastiff 1.585950e-01 True Great_Dane 1.185860e-02 True
1112 724049859469295616 https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg 1 Border_collie 0.581835 True collie 3.445880e-01 True Shetland_sheepdog 4.358420e-02 True
1113 724405726123311104 https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg 1 golden_retriever 0.240695 True cocker_spaniel 2.024440e-01 True feather_boa 1.593480e-01 False
1114 724771698126512129 https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg 2 German_short-haired_pointer 0.835491 True bluetick 5.878800e-02 True English_setter 3.720830e-02 True
1115 724983749226668032 https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg 1 golden_retriever 0.675750 True Great_Pyrenees 9.516790e-02 True cocker_spaniel 7.604290e-02 True
1116 725729321944506368 https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg 1 boxer 0.599076 True bull_mastiff 1.773180e-01 True French_bulldog 1.414610e-01 True
1117 725786712245440512 https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg 1 chow 0.335761 True Samoyed 1.671730e-01 True kuvasz 1.457150e-01 True
1118 725842289046749185 https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg 1 toy_poodle 0.420463 True miniature_poodle 1.326400e-01 True Chesapeake_Bay_retriever 1.215230e-01 True
1119 726224900189511680 https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg 1 standard_poodle 0.261112 True cocker_spaniel 9.478520e-02 True bucket 6.994640e-02 False
1120 726828223124897792 https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg 1 miniature_pinscher 0.255327 True Border_terrier 1.812790e-01 True Labrador_retriever 1.251850e-01 True
1121 726887082820554753 https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg 1 soft-coated_wheaten_terrier 0.515919 True Irish_terrier 1.626550e-01 True Chesapeake_Bay_retriever 1.251820e-01 True
1122 726935089318363137 https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg 2 teddy 0.821615 False toy_poodle 8.374900e-02 True Lakeland_terrier 3.331800e-02 True
1123 727175381690781696 https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg 2 flat-coated_retriever 0.656463 True Great_Dane 8.476580e-02 True Labrador_retriever 5.890850e-02 True
1124 727286334147182592 https://pbs.twimg.com/media/ChfXDrGUkAEAtF-.jpg 1 bonnet 0.146440 False sock 8.309100e-02 False Chihuahua 7.055420e-02 True
1125 727314416056803329 https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg 2 toy_poodle 0.827469 True miniature_poodle 1.607600e-01 True Tibetan_terrier 1.730750e-03 True
1126 727524757080539137 https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg 2 Pomeranian 0.958834 True Chihuahua 2.409920e-02 True chow 3.941050e-03 True
1127 727644517743104000 https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg 2 Great_Pyrenees 0.457164 True kuvasz 3.917100e-01 True Labrador_retriever 9.452260e-02 True
1128 727685679342333952 https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg 1 Border_collie 0.462408 True collie 2.145560e-01 True Eskimo_dog 3.560360e-02 True
1129 728015554473250816 https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg 1 cocker_spaniel 0.384559 True golden_retriever 9.166100e-02 True sandbar 8.179890e-02 False
1130 728035342121635841 https://pbs.twimg.com/media/ChqARqmWsAEI6fB.jpg 1 handkerchief 0.302961 False Pomeranian 2.486640e-01 True Shih-Tzu 1.110150e-01 True
1131 728046963732717569 https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg 1 Newfoundland 0.255971 True groenendael 1.755830e-01 True German_shepherd 1.641350e-01 True
1132 728387165835677696 https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg 1 collie 0.266414 True Great_Pyrenees 1.385460e-01 True keeshond 1.090140e-01 True
1133 728409960103686147 https://pbs.twimg.com/media/ChvU_DwWMAArx5L.jpg 1 Siamese_cat 0.478278 False Saint_Bernard 9.424560e-02 True king_penguin 8.215670e-02 False
1134 728653952833728512 https://pbs.twimg.com/media/Chyy5lQWUAEzxSL.jpg 2 window_shade 0.594333 False studio_couch 5.351500e-02 False rotisserie 4.124780e-02 False
1135 728751179681943552 https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg 1 Saint_Bernard 0.482050 True collie 2.027400e-01 True borzoi 3.797580e-02 True
1136 728760639972315136 https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg 1 Pembroke 0.939134 True Cardigan 5.433560e-02 True Chihuahua 5.590290e-03 True
1137 728986383096946689 https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg 2 Maltese_dog 0.952070 True toy_poodle 2.727060e-02 True miniature_poodle 4.874360e-03 True
1138 729113531270991872 https://pbs.twimg.com/media/Ch5U4FzXEAAShhF.jpg 2 stone_wall 0.606188 False prison 6.483100e-02 False bannister 4.804820e-02 False
1139 729463711119904772 https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg 1 German_shepherd 0.829307 True Doberman 2.250000e-02 True basenji 2.119010e-02 True
1140 729823566028484608 https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg 1 kelpie 0.218408 True Arabian_camel 1.143680e-01 False coyote 9.640930e-02 False
1141 729838605770891264 https://pbs.twimg.com/ext_tw_video_thumb/729838572744912896/pu/img/RIl-XYmRxW-YLFSV.jpg 1 stone_wall 0.758218 False patio 7.420540e-02 False prison 1.382600e-02 False
1142 729854734790754305 https://pbs.twimg.com/media/CiD3AfkXEAA3S_r.jpg 1 doormat 0.359586 False china_cabinet 5.390140e-02 False passenger_car 5.266470e-02 False
1143 730196704625098752 https://pbs.twimg.com/media/CiIuBwCUgAAAGbz.jpg 1 hand_blower 0.296145 False chain_mail 2.622710e-01 False toilet_seat 1.494970e-01 False
1144 730211855403241472 https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg 1 pug 0.341663 True Norwegian_elkhound 1.712220e-01 True German_shepherd 1.246870e-01 True
1145 730427201120833536 https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg 1 Eskimo_dog 0.682082 True Siberian_husky 2.892880e-01 True Staffordshire_bullterrier 8.770690e-03 True
1146 730573383004487680 https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg 2 American_Staffordshire_terrier 0.810158 True Labrador_retriever 5.820500e-02 True Weimaraner 2.792950e-02 True
1147 730924654643314689 https://pbs.twimg.com/media/CiTEFjDXAAAqU6I.jpg 1 polecat 0.185382 False mink 1.052820e-01 False Newfoundland 8.624110e-02 True
1148 731156023742988288 https://pbs.twimg.com/media/CiWWhVNUYAAab_r.jpg 1 lakeside 0.501767 False breakwater 5.135060e-02 False king_penguin 4.944380e-02 False
1149 731285275100512256 https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg 1 Pembroke 0.967103 True Cardigan 2.112640e-02 True Chihuahua 2.231070e-03 True
1150 732005617171337216 https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg 1 English_setter 0.677408 True Border_collie 5.272400e-02 True cocker_spaniel 4.857190e-02 True
1151 732375214819057664 https://pbs.twimg.com/media/CinrX2EWkAABDYt.jpg 1 tennis_ball 0.998673 False basset 5.470530e-04 True golden_retriever 3.599800e-04 True
1152 732585889486888962 https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg 2 Staffordshire_bullterrier 0.843359 True American_Staffordshire_terrier 2.829030e-02 True miniature_pinscher 1.679290e-02 True
1153 732726085725589504 https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg 1 Pomeranian 0.961902 True Samoyed 2.428930e-02 True chow 5.771780e-03 True
1154 732732193018155009 https://pbs.twimg.com/media/CiswCQhWYAI5-QW.jpg 1 koala 0.162935 False Staffordshire_bullterrier 1.279690e-01 True mongoose 9.642100e-02 False
1155 733109485275860992 https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg 1 golden_retriever 0.945523 True Labrador_retriever 4.231910e-02 True doormat 3.956260e-03 False
1156 733460102733135873 https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg 1 chow 0.931275 True beaver 2.883110e-02 False dhole 1.737900e-02 False
1157 733482008106668032 https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg 1 French_bulldog 0.619382 True computer_keyboard 1.422740e-01 False mouse 5.850470e-02 False
1158 733822306246479872 https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg 1 Lhasa 0.457356 True Shih-Tzu 3.712820e-01 True Tibetan_terrier 4.835900e-02 True
1159 733828123016450049 https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg 2 beagle 0.472324 True Walker_hound 1.217790e-01 True Saint_Bernard 1.146400e-01 True
1160 734776360183431168 https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg 1 Siberian_husky 0.304902 True Eskimo_dog 1.551470e-01 True malamute 5.094240e-02 True
1161 734787690684657664 https://pbs.twimg.com/media/CjJ9gQ1WgAAXQtJ.jpg 4 golden_retriever 0.883991 True chow 2.354160e-02 True Labrador_retriever 1.605590e-02 True
1162 734912297295085568 https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg 1 Maltese_dog 0.847292 True feather_boa 5.937860e-02 False Old_English_sheepdog 5.275800e-02 True
1163 735137028879360001 https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg 1 Walker_hound 0.413535 True beagle 2.338910e-01 True English_foxhound 1.649430e-01 True
1164 735256018284875776 https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg 1 Staffordshire_bullterrier 0.523191 True French_bulldog 3.511040e-01 True doormat 2.807530e-02 False
1165 735274964362878976 https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg 1 studio_couch 0.944692 False four-poster 7.941630e-03 False quilt 6.302060e-03 False
1166 735635087207878657 https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg 1 pug 0.891871 True goose 1.437660e-02 False fur_coat 8.451430e-03 False
1167 735648611367784448 https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg 1 Pembroke 0.462594 True seat_belt 2.618540e-01 False Cardigan 1.516980e-01 True
1168 735991953473572864 https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg 2 cocker_spaniel 0.961643 True toy_poodle 1.154690e-02 True soft-coated_wheaten_terrier 4.903330e-03 True
1169 736010884653420544 https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg 2 golden_retriever 0.553901 True Labrador_retriever 1.194750e-01 True bluetick 7.747500e-02 True
1170 736225175608430592 https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg 1 Labrador_retriever 0.399217 True West_Highland_white_terrier 1.377100e-01 True cocker_spaniel 6.203270e-02 True
1171 736365877722001409 https://pbs.twimg.com/media/CjgYyuvWkAAHU8g.jpg 3 cup 0.473555 False toy_poodle 8.260600e-02 True consomme 4.829800e-02 False
1172 736736130620620800 https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg 1 schipperke 0.545502 True groenendael 2.986220e-01 True Labrador_retriever 3.098640e-02 True
1173 737310737551491075 https://pbs.twimg.com/ext_tw_video_thumb/737310236135043073/pu/img/_lG4DXmH-_XEq7Rc.jpg 1 cliff 0.439077 False lakeside 6.289920e-02 False valley 3.975850e-02 False
1174 737322739594330112 https://pbs.twimg.com/media/Cjt_Hm6WsAAjkPG.jpg 1 guinea_pig 0.148526 False solar_dish 9.718290e-02 False park_bench 5.931190e-02 False
1175 737445876994609152 https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg 1 Samoyed 0.400568 True Pomeranian 3.312680e-01 True Maltese_dog 4.542610e-02 True
1176 737678689543020544 https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg 1 Pembroke 0.935307 True Cardigan 4.987420e-02 True Chihuahua 1.160320e-02 True
1177 737800304142471168 https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg 1 malamute 0.374682 True Norwegian_elkhound 3.348530e-01 True limousine 6.817320e-02 False
1178 737826014890496000 https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg 1 vizsla 0.990391 True Rhodesian_ridgeback 5.604740e-03 True Chesapeake_Bay_retriever 2.869360e-03 True
1179 738156290900254721 https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg 1 pug 0.751758 True tub 1.107480e-01 False bathtub 1.041320e-01 False
1180 738166403467907072 https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg 2 keeshond 0.878886 True Norwegian_elkhound 8.665940e-02 True malamute 2.128030e-02 True
1181 738184450748633089 https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg 1 Bedlington_terrier 0.289471 True standard_poodle 1.736850e-01 True Great_Pyrenees 1.570810e-01 True
1182 738402415918125056 https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg 1 cocker_spaniel 0.346695 True Blenheim_spaniel 1.939050e-01 True Chihuahua 7.800000e-02 True
1183 738537504001953792 https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg 1 chow 0.808737 True gibbon 2.894240e-02 False Pembroke 2.649790e-02 True
1184 738883359779196928 https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg 2 Labrador_retriever 0.691137 True golden_retriever 1.955580e-01 True Chesapeake_Bay_retriever 1.958490e-02 True
1185 738885046782832640 https://pbs.twimg.com/media/CkEMBz9WYAAGLaa.jpg 1 bath_towel 0.878320 False swab 2.063330e-02 False American_Staffordshire_terrier 1.553510e-02 True
1186 739238157791694849 https://pbs.twimg.com/ext_tw_video_thumb/739238016737267712/pu/img/-tLpyiuIzD5zR1et.jpg 1 Eskimo_dog 0.503372 True Siberian_husky 3.904130e-01 True malamute 8.090120e-02 True
1187 739485634323156992 https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg 2 Walker_hound 0.640256 True English_foxhound 2.297990e-01 True beagle 3.775400e-02 True
1188 739544079319588864 https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg 1 Labrador_retriever 0.967397 True golden_retriever 1.664140e-02 True ice_bear 1.485760e-02 False
1189 739606147276148736 https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg 3 Blenheim_spaniel 0.933755 True cocker_spaniel 4.171940e-02 True Brittany_spaniel 6.712560e-03 True
1190 739844404073074688 https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg 1 toy_poodle 0.342397 True table_lamp 1.044510e-01 False miniature_poodle 7.987100e-02 True
1191 739932936087216128 https://pbs.twimg.com/media/CkTFEe-W0AA90m1.jpg 1 redbone 0.243904 True beagle 2.109750e-01 True vizsla 7.644300e-02 True
1192 739979191639244800 https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg 1 Irish_water_spaniel 0.285800 True wig 2.406530e-01 False toy_poodle 7.491390e-02 True
1193 740214038584557568 https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg 1 Chesapeake_Bay_retriever 0.586414 True Labrador_retriever 1.897820e-01 True vizsla 6.760720e-02 True
1194 740359016048689152 https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg 1 golden_retriever 0.863687 True kuvasz 4.859010e-02 True Labrador_retriever 4.739660e-02 True
1195 740365076218183684 https://pbs.twimg.com/media/CkZOGhJWsAAHvPv.jpg 1 bow_tie 0.246313 False Windsor_tie 1.724460e-01 False mushroom 1.375160e-01 False
1196 740373189193256964 https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg 3 golden_retriever 0.807644 True kuvasz 1.012860e-01 True Labrador_retriever 2.378530e-02 True
1197 740676976021798912 https://pbs.twimg.com/media/Ckdpx5KWsAANF6b.jpg 1 wombat 0.462952 False Norwegian_elkhound 2.752250e-01 True Siamese_cat 4.355930e-02 False
1198 740699697422163968 https://pbs.twimg.com/media/Ckd-bqVUkAIiyM7.jpg 1 lawn_mower 0.878863 False swing 2.453510e-02 False barrow 1.957720e-02 False
1199 740711788199743490 https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg 1 toy_poodle 0.388277 True Angora 1.802640e-01 False Persian_cat 4.965610e-02 False
1200 740995100998766593 https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg 1 malamute 0.454363 True Samoyed 2.159670e-01 True Siberian_husky 7.750030e-02 True
1201 741067306818797568 https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg 1 golden_retriever 0.843799 True Labrador_retriever 5.295590e-02 True kelpie 3.571110e-02 True
1202 741303864243200000 https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg 1 Chihuahua 0.768156 True pug 1.490160e-02 True Pekinese 1.281580e-02 True
1203 741438259667034112 https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg 1 Chesapeake_Bay_retriever 0.292675 True redbone 1.978580e-01 True vizsla 1.503120e-01 True
1204 741743634094141440 https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg 1 Labrador_retriever 0.786089 True flat-coated_retriever 4.865240e-02 True Chesapeake_Bay_retriever 3.469330e-02 True
1205 741793263812808706 https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg 1 kuvasz 0.311325 True French_bulldog 1.153490e-01 True Labrador_retriever 6.853350e-02 True
1206 742150209887731712 https://pbs.twimg.com/media/CkylrVWWsAAiXJE.jpg 1 Siamese_cat 0.112413 False French_bulldog 7.141440e-02 True hog 6.246540e-02 False
1207 742161199639494656 https://pbs.twimg.com/media/CkyvqnNWYAQxQY1.jpg 1 balloon 0.990736 False punching_bag 4.753560e-03 False parachute 4.359740e-04 False
1208 742385895052087300 https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg 1 Cardigan 0.566911 True Border_collie 1.175660e-01 True Appenzeller 4.766400e-02 True
1209 742423170473463808 https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg 1 pug 0.997310 True Brabancon_griffon 1.185630e-03 True French_bulldog 4.279890e-04 True
1210 742465774154047488 https://pbs.twimg.com/media/Ck3EribXEAAPhZn.jpg 1 web_site 0.997154 False comic_book 4.392210e-04 False desktop_computer 2.675790e-04 False
1211 742528092657332225 https://pbs.twimg.com/media/Ck39W0JWUAApgnH.jpg 2 sunglasses 0.900864 False sunglass 4.029060e-02 False snorkel 9.332920e-03 False
1212 743210557239623680 https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg 1 golden_retriever 0.930705 True Chesapeake_Bay_retriever 2.593410e-02 True Labrador_retriever 7.535360e-03 True
1213 743222593470234624 https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg 1 kuvasz 0.350629 True soft-coated_wheaten_terrier 1.827820e-01 True golden_retriever 8.766240e-02 True
1214 743253157753532416 https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg 1 malamute 0.442612 True Siberian_husky 3.681370e-01 True Eskimo_dog 1.778220e-01 True
1215 743510151680958465 https://pbs.twimg.com/ext_tw_video_thumb/743509040018268160/pu/img/Ol2OgO5f8ciUp80r.jpg 1 sea_lion 0.859046 False tub 2.040540e-02 False hippopotamus 1.309480e-02 False
1216 743545585370791937 https://pbs.twimg.com/media/ClGawiUWAAAgs0w.jpg 2 rapeseed 0.876875 False standard_poodle 6.058350e-02 True Great_Pyrenees 3.300570e-02 True
1217 743595368194129920 https://pbs.twimg.com/media/ClHICHmXEAI_1PS.jpg 1 hippopotamus 0.505675 False hog 3.707260e-01 False warthog 1.882720e-02 False
1218 743609206067040256 https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg 3 Weimaraner 0.982794 True American_Staffordshire_terrier 4.766400e-03 True Great_Dane 3.432010e-03 True
1219 743895849529389061 https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg 1 dalmatian 0.562315 True Great_Dane 4.164780e-01 True German_short-haired_pointer 8.552360e-03 True
1220 743980027717509120 https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg 1 bull_mastiff 0.975730 True Rhodesian_ridgeback 8.072610e-03 True pug 5.570870e-03 True
1221 744234799360020481 https://pbs.twimg.com/ext_tw_video_thumb/744234667679821824/pu/img/1GaWmtJtdqzZV7jy.jpg 1 Labrador_retriever 0.825333 True ice_bear 4.468080e-02 False whippet 1.844220e-02 True
1222 744334592493166593 https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg 1 Samoyed 0.960543 True Pomeranian 1.219190e-02 True white_wolf 4.752990e-03 False
1223 744709971296780288 https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg 1 Shetland_sheepdog 0.234431 True Samoyed 1.148760e-01 True collie 8.661370e-02 True
1224 744971049620602880 https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg 1 toy_poodle 0.497755 True golden_retriever 2.820170e-01 True miniature_poodle 9.003240e-02 True
1225 744995568523612160 https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg 1 Old_English_sheepdog 0.427481 True Shih-Tzu 1.463360e-01 True Tibetan_terrier 1.342690e-01 True
1226 745057283344719872 https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg 2 Shetland_sheepdog 0.963985 True collie 2.620570e-02 True Border_collie 4.543650e-03 True
1227 745314880350101504 https://pbs.twimg.com/media/Clfj6RYWMAAFAOW.jpg 2 ice_bear 0.807762 False great_white_shark 2.704040e-02 False fountain 2.205180e-02 False
1228 745422732645535745 https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg 1 Labrador_retriever 0.663800 True golden_retriever 3.082610e-01 True ice_bear 4.269210e-03 False
1229 745433870967832576 https://pbs.twimg.com/media/ClhQJUUWAAEVpBX.jpg 1 barrow 0.999962 False basset 1.448950e-05 True wok 6.060880e-06 False
1230 745712589599014916 https://pbs.twimg.com/media/CllNnkWWMAEDIAR.jpg 1 seat_belt 0.379055 False chow 6.275450e-02 True minibus 5.242260e-02 False
1231 745789745784041472 https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg 1 Pekinese 0.984267 True Shih-Tzu 8.941660e-03 True cocker_spaniel 1.928260e-03 True
1232 746056683365994496 https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg 1 Shetland_sheepdog 0.433320 True collie 3.359970e-01 True borzoi 1.771790e-01 True
1233 746131877086527488 https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg 1 chow 0.575637 True Pomeranian 1.959500e-01 True Norwich_terrier 1.412240e-01 True
1234 746369468511756288 https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg 1 German_shepherd 0.622957 True malinois 3.388840e-01 True wallaby 2.416150e-02 False
1235 746507379341139972 https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg 1 toy_poodle 0.508292 True Lakeland_terrier 2.344580e-01 True affenpinscher 8.456280e-02 True
1236 746726898085036033 https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg 1 golden_retriever 0.256505 True Labrador_retriever 2.524170e-01 True seat_belt 2.031630e-01 False
1237 746790600704425984 https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg 3 Boston_bull 0.936183 True guinea_pig 1.008400e-02 False Cardigan 1.007700e-02 True
1238 746818907684614144 https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg 1 dingo 0.175518 False timber_wolf 1.336470e-01 False Ibizan_hound 1.015370e-01 True
1239 746872823977771008 https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg 1 Pembroke 0.540201 True beagle 2.078350e-01 True Italian_greyhound 4.356490e-02 True
1240 746906459439529985 https://pbs.twimg.com/media/Cl2LdofXEAATl7x.jpg 1 traffic_light 0.470708 False fountain 1.997760e-01 False space_shuttle 6.480700e-02 False
1241 747103485104099331 https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg 1 Labrador_retriever 0.991954 True golden_retriever 2.228490e-03 True doormat 1.404020e-03 False
1242 747204161125646336 https://pbs.twimg.com/media/Cl6aOBhWEAALuti.jpg 2 coil 0.533699 False dugong 8.795910e-02 False rain_barrel 3.922150e-02 False
1243 747219827526344708 https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg 2 Shetland_sheepdog 0.548018 True marmot 1.655030e-01 False collie 4.300260e-02 True
1244 747461612269887489 https://pbs.twimg.com/media/Cl-EXHSWkAE2IN2.jpg 1 binoculars 0.192717 False barbershop 8.583820e-02 False ballplayer 8.467220e-02 False
1245 747512671126323200 https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg 1 Cardigan 0.111493 True malinois 9.508920e-02 True German_shepherd 8.014560e-02 True
1246 747594051852075008 https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg 1 basenji 0.389136 True dingo 2.702260e-01 False Chihuahua 9.893880e-02 True
1247 747600769478692864 https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg 1 Chesapeake_Bay_retriever 0.804363 True Weimaraner 5.443110e-02 True Labrador_retriever 4.326760e-02 True
1248 747816857231626240 https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg 1 Pembroke 0.768923 True Chihuahua 2.905300e-02 True Shetland_sheepdog 2.903540e-02 True
1249 747844099428986880 https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg 1 Pembroke 0.360428 True papillon 2.631340e-01 True Chihuahua 1.312460e-01 True
1250 747885874273214464 https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg 1 kuvasz 0.408450 True Samoyed 1.413300e-01 True pug 8.301840e-02 True
1251 747933425676525569 https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg 1 Samoyed 0.998201 True Eskimo_dog 7.928500e-04 True Great_Pyrenees 2.957500e-04 True
1252 747963614829678593 https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg 1 kelpie 0.307672 True Irish_terrier 1.974860e-01 True dingo 1.054750e-01 False
1253 748307329658011649 https://pbs.twimg.com/media/CmKFi-FXEAAeI37.jpg 2 paddle 0.589066 False shovel 3.806230e-02 False mountain_tent 2.920330e-02 False
1254 748324050481647620 https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg 1 Shetland_sheepdog 0.880499 True collie 1.079010e-01 True Pembroke 3.606670e-03 True
1255 748346686624440324 https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg 1 borzoi 0.596455 True whippet 2.314280e-01 True Saluki 5.826140e-02 True
1256 748568946752774144 https://pbs.twimg.com/ext_tw_video_thumb/748568890477789184/pu/img/1MzP7FuodJdHw8zA.jpg 1 Tibetan_terrier 0.328161 True toy_poodle 3.048360e-01 True miniature_poodle 7.087840e-02 True
1257 748575535303884801 https://pbs.twimg.com/media/CmN5ecNWMAE6pnf.jpg 1 muzzle 0.176172 False seat_belt 1.609530e-01 False soft-coated_wheaten_terrier 8.649880e-02 True
1258 748692773788876800 https://pbs.twimg.com/media/CmPkGhFXEAABO1n.jpg 1 ox 0.337871 False plow 2.692870e-01 False oxcart 2.456530e-01 False
1259 748699167502000129 https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg 1 Pembroke 0.849029 True Cardigan 8.362880e-02 True kelpie 2.439450e-02 True
1260 748705597323898880 https://pbs.twimg.com/ext_tw_video_thumb/748704826305970176/pu/img/QHuadM5eEygfBeOf.jpg 1 tiger_shark 0.548497 False great_white_shark 1.302520e-01 False scuba_diver 1.218870e-01 False
1261 748932637671223296 https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg 1 borzoi 0.742912 True wire-haired_fox_terrier 2.040820e-01 True English_setter 2.103230e-02 True
1262 748977405889503236 https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg 1 German_short-haired_pointer 0.742216 True bluetick 1.528100e-01 True English_setter 5.183470e-02 True
1263 749036806121881602 https://pbs.twimg.com/media/CmUciKgWIAA97sH.jpg 1 sulphur-crested_cockatoo 0.960276 False West_Highland_white_terrier 1.952230e-02 True Samoyed 6.395620e-03 True
1264 749064354620928000 https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg 2 pug 0.985222 True Brabancon_griffon 3.313660e-03 True Pekinese 2.988880e-03 True
1265 749317047558017024 https://pbs.twimg.com/ext_tw_video_thumb/749316899712950272/pu/img/nvZI9mkoAxt89sul.jpg 1 wire-haired_fox_terrier 0.155144 True Lakeland_terrier 1.083820e-01 True buckeye 7.461670e-02 False
1266 749395845976588288 https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg 1 Pomeranian 0.973715 True chow 2.075810e-02 True keeshond 3.784360e-03 True
1267 749403093750648834 https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg 1 Chesapeake_Bay_retriever 0.694541 True curly-coated_retriever 7.633530e-02 True Irish_water_spaniel 4.854950e-02 True
1268 749417653287129088 https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg 2 papillon 0.772894 True Shetland_sheepdog 4.240760e-02 True collie 4.231310e-02 True
1269 749774190421639168 https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg 1 Pekinese 0.879012 True Chihuahua 5.485500e-02 True Blenheim_spaniel 2.104100e-02 True
1270 749981277374128128 https://pbs.twimg.com/media/CmgBZ7kWcAAlzFD.jpg 1 bow_tie 0.533941 False sunglasses 8.082220e-02 False sunglass 5.077620e-02 False
1271 749996283729883136 https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg 1 Old_English_sheepdog 0.515319 True West_Highland_white_terrier 1.510400e-01 True soft-coated_wheaten_terrier 5.642000e-02 True
1272 750011400160841729 https://pbs.twimg.com/media/CmfmvGUWgAAuVKD.jpg 1 muzzle 0.237620 False Boston_bull 8.714980e-02 True sombrero 6.850990e-02 False
1273 750026558547456000 https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg 1 standard_poodle 0.258732 True teddy 1.307600e-01 False toy_poodle 7.172630e-02 True
1274 750041628174217216 https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg 1 Labrador_retriever 0.252031 True Maltese_dog 1.880900e-01 True golden_retriever 1.330170e-01 True
1275 750056684286914561 https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg 1 Saluki 0.484428 True borzoi 2.635500e-01 True Labrador_retriever 7.700380e-02 True
1276 750071704093859840 https://pbs.twimg.com/media/CmjKOzVWcAAQN6w.jpg 2 redbone 0.382113 True malinois 2.499430e-01 True miniature_pinscher 7.092620e-02 True
1277 750086836815486976 https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg 1 pug 0.978277 True teddy 3.134460e-03 False Brabancon_griffon 3.061490e-03 True
1278 750101899009982464 https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg 2 golden_retriever 0.316704 True llama 1.742690e-01 False Labrador_retriever 1.473640e-01 True
1279 750117059602808832 https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg 2 Shih-Tzu 0.814405 True Lhasa 1.752200e-01 True Pekinese 8.072300e-03 True
1280 750132105863102464 https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg 1 toy_poodle 0.478018 True miniature_poodle 2.074580e-01 True croquet_ball 8.587890e-02 False
1281 750147208377409536 https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg 1 pug 0.977765 True Boston_bull 4.794250e-03 True French_bulldog 4.572840e-03 True
1282 750383411068534784 https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg 1 Border_collie 0.672791 True collie 2.701880e-01 True papillon 3.450390e-02 True
1283 750429297815552001 https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg 1 golden_retriever 0.964929 True Labrador_retriever 1.158370e-02 True refrigerator 7.498620e-03 False
1284 750506206503038976 https://pbs.twimg.com/media/CmpVaOZWIAAp3z6.jpg 1 American_black_bear 0.219166 False lesser_panda 2.147150e-01 False titi 9.168510e-02 False
1285 750719632563142656 https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg 1 Pembroke 0.972587 True Cardigan 1.477170e-02 True basenji 5.798030e-03 True
1286 750868782890057730 https://pbs.twimg.com/media/CmufLLsXYAAsU0r.jpg 4 toy_poodle 0.912648 True miniature_poodle 3.505920e-02 True seat_belt 2.637560e-02 False
1287 751132876104687617 https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg 1 Labrador_retriever 0.929390 True Chesapeake_Bay_retriever 3.825350e-02 True golden_retriever 7.610200e-03 True
1288 751205363882532864 https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg 2 Labrador_retriever 0.947164 True Chesapeake_Bay_retriever 2.059670e-02 True golden_retriever 1.657920e-02 True
1289 751251247299190784 https://pbs.twimg.com/ext_tw_video_thumb/751250895690731520/pu/img/eziHbU1KbgZg-ijN.jpg 1 Walker_hound 0.178852 True German_short-haired_pointer 1.157520e-01 True English_foxhound 1.137960e-01 True
1290 751456908746354688 https://pbs.twimg.com/ext_tw_video_thumb/751456786360725504/pu/img/hWqfIQ29A0cBv6f_.jpg 1 golden_retriever 0.714409 True Afghan_hound 6.616260e-02 True chow 2.841260e-02 True
1291 751538714308972544 https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg 2 Labrador_retriever 0.516257 True golden_retriever 2.108390e-01 True dingo 1.620220e-01 False
1292 751583847268179968 https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg 1 dalmatian 0.868304 True studio_couch 5.962300e-02 False snow_leopard 1.387630e-02 False
1293 751598357617971201 https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg 1 toy_poodle 0.757756 True miniature_poodle 3.514950e-02 True Scottish_deerhound 2.769820e-02 True
1294 751830394383790080 https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg 1 chow 0.703569 True Pomeranian 7.663670e-02 True Siamese_cat 4.595910e-02 False
1295 751937170840121344 https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg 1 Lakeland_terrier 0.424168 True teddy 2.605620e-01 False golden_retriever 1.274320e-01 True
1296 752173152931807232 https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg 1 Labrador_retriever 0.527659 True German_shepherd 1.747650e-01 True Chihuahua 4.552540e-02 True
1297 752309394570878976 https://pbs.twimg.com/ext_tw_video_thumb/675354114423808004/pu/img/qL1R_nGLqa6lmkOx.jpg 1 upright 0.303415 False golden_retriever 1.813510e-01 True Brittany_spaniel 1.620840e-01 True
1298 752334515931054080 https://pbs.twimg.com/ext_tw_video_thumb/752334354492362752/pu/img/uWISPc0YRmhUi9Ju.jpg 1 Bedlington_terrier 0.399163 True standard_poodle 8.642490e-02 True wire-haired_fox_terrier 7.523110e-02 True
1299 752519690950500352 https://pbs.twimg.com/media/CnF8qVDWYAAh0g1.jpg 3 swing 0.999984 False Labrador_retriever 1.002880e-05 True Eskimo_dog 1.434470e-06 True
1300 752660715232722944 https://pbs.twimg.com/media/CnH87L6XYAAF7I_.jpg 2 goose 0.339324 False English_setter 5.051180e-02 True basset 4.909330e-02 True
1301 752682090207055872 https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg 2 German_shepherd 0.299966 True Eskimo_dog 2.783550e-01 True Siberian_husky 1.785200e-01 True
1302 752917284578922496 https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg 1 German_shepherd 0.609283 True malinois 3.524600e-01 True kelpie 1.610520e-02 True
1303 753026973505581056 https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg 3 Pembroke 0.868511 True Cardigan 1.037080e-01 True Shetland_sheepdog 1.814160e-02 True
1304 753294487569522689 https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg 1 chow 0.194773 True monitor 1.023050e-01 False Siberian_husky 8.685470e-02 True
1305 753375668877008896 https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg 1 bluetick 0.360071 True crutch 1.348160e-01 False tripod 9.820660e-02 False
1306 753398408988139520 https://pbs.twimg.com/ext_tw_video_thumb/753398183879991296/pu/img/bqFy5Zc_PEk6Mx-B.jpg 1 whippet 0.163794 True Italian_greyhound 1.571920e-01 True English_foxhound 1.429950e-01 True
1307 753420520834629632 https://pbs.twimg.com/ext_tw_video_thumb/753420390836346880/pu/img/ZHLvYxSHYuQK3uXi.jpg 1 balloon 0.267961 False lakeside 8.576370e-02 False rapeseed 4.080890e-02 False
1308 753655901052166144 https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg 1 miniature_pinscher 0.456092 True toy_terrier 1.531260e-01 True Italian_greyhound 1.441470e-01 True
1309 754011816964026368 https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg 1 French_bulldog 0.600985 True Boston_bull 2.731760e-01 True boxer 5.677150e-02 True
1310 754120377874386944 https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg 1 chow 0.168909 True Norfolk_terrier 1.291140e-01 True Pomeranian 1.208220e-01 True
1311 754449512966619136 https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg 1 beagle 0.858513 True basset 7.601190e-02 True English_foxhound 1.624560e-02 True
1312 754482103782404096 https://pbs.twimg.com/ext_tw_video_thumb/754481405627957248/pu/img/YY1eBDOlP9QFC4Bj.jpg 1 tub 0.596796 False bathtub 3.810980e-01 False shower_curtain 1.762880e-02 False
1313 754747087846248448 https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg 1 rotisserie 0.471493 False cash_machine 2.508370e-01 False sliding_door 1.178720e-01 False
1314 754856583969079297 https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg 2 golden_retriever 0.872385 True Labrador_retriever 9.996310e-02 True cocker_spaniel 6.050830e-03 True
1315 754874841593970688 https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg 1 pug 0.272205 True bull_mastiff 2.515300e-01 True bath_towel 1.168060e-01 False
1316 755110668769038337 https://pbs.twimg.com/ext_tw_video_thumb/755110610942169088/pu/img/3-INz45pSRMkzOEF.jpg 1 Labrador_retriever 0.708974 True golden_retriever 1.143140e-01 True Great_Pyrenees 6.581340e-02 True
1317 755206590534418437 https://pbs.twimg.com/media/CnsIT0WWcAAul8V.jpg 1 web_site 0.906673 False printer 8.600270e-03 False carton 4.533190e-03 False
1318 755955933503782912 https://pbs.twimg.com/ext_tw_video_thumb/755955658164465664/pu/img/YcjfthN7C3z61GUj.jpg 1 Pekinese 0.596882 True Maltese_dog 1.764780e-01 True Great_Pyrenees 2.677530e-02 True
1319 756275833623502848 https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg 1 Airedale 0.602957 True Irish_terrier 8.698080e-02 True bloodhound 8.627650e-02 True
1320 756288534030475264 https://pbs.twimg.com/media/Cn7gaHrWIAAZJMt.jpg 3 conch 0.925621 False French_bulldog 3.249220e-02 True tiger_cat 6.679080e-03 False
1321 756303284449767430 https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg 1 golden_retriever 0.981652 True cocker_spaniel 6.790300e-03 True Labrador_retriever 4.324510e-03 True
1322 756526248105566208 https://pbs.twimg.com/media/Cn-4m2CXYAErPGe.jpg 1 geyser 0.991273 False volcano 4.672510e-03 False fountain 1.234030e-03 False
1323 756651752796094464 https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg 1 Pembroke 0.294808 True kelpie 2.823010e-01 True Cardigan 1.126010e-01 True
1324 756939218950160384 https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg 1 golden_retriever 0.790371 True cocker_spaniel 1.302680e-01 True Labrador_retriever 6.462870e-02 True
1325 756998049151549440 https://pbs.twimg.com/media/CoFlsGAWgAA2YeV.jpg 4 golden_retriever 0.678555 True Labrador_retriever 7.263200e-02 True Border_terrier 4.903300e-02 True
1326 757354760399941633 https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg 1 Italian_greyhound 0.914667 True whippet 4.777370e-02 True ice_lolly 1.547680e-02 False
1327 757393109802180609 https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg 2 Labrador_retriever 0.787125 True Chesapeake_Bay_retriever 1.126760e-01 True Rottweiler 4.803860e-02 True
1328 757400162377592832 https://pbs.twimg.com/media/CoLTbbzXYAElNM6.jpg 1 seat_belt 0.523926 False golden_retriever 8.780030e-02 True Tibetan_mastiff 7.512670e-02 True
1329 757596066325864448 https://pbs.twimg.com/media/CoOFmk3WEAAG6ql.jpg 1 doormat 0.845256 False wallet 9.571800e-02 False wool 2.607190e-02 False
1330 757597904299253760 https://pbs.twimg.com/media/CoOGZjiWAAEMKGx.jpg 1 doormat 0.836106 False wallet 5.662690e-02 False purse 5.133350e-02 False
1331 757611664640446465 https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg 1 bluetick 0.829259 True beagle 1.453580e-01 True Walker_hound 1.959530e-02 True
1332 757725642876129280 https://pbs.twimg.com/media/CoP7c4bWcAAr55g.jpg 2 seat_belt 0.425176 False Labrador_retriever 1.281280e-01 True Siamese_cat 9.124110e-02 False
1333 757729163776290825 https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg 2 cash_machine 0.802333 False schipperke 4.551860e-02 True German_shepherd 2.335350e-02 True
1334 757741869644341248 https://pbs.twimg.com/media/CoQKNY7XYAE_cuX.jpg 1 skunk 0.609715 False Old_English_sheepdog 1.288990e-01 True Siberian_husky 1.907610e-02 True
1335 758041019896193024 https://pbs.twimg.com/media/CoUaSKEXYAAYsAl.jpg 1 bookshop 0.794272 False Cardigan 5.126530e-02 True Bernese_mountain_dog 2.659630e-02 True
1336 758355060040593408 https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg 1 Pembroke 0.987643 True Cardigan 1.211210e-02 True Siamese_cat 1.174770e-04 False
1337 758405701903519748 https://pbs.twimg.com/media/CoZl9fXWgAMox0n.jpg 4 Chesapeake_Bay_retriever 0.702954 True laptop 9.227750e-02 False notebook 3.272680e-02 False
1338 758467244762497024 https://pbs.twimg.com/ext_tw_video_thumb/758467147756691456/pu/img/YTNzjRFDSPNXukmM.jpg 1 Labrador_retriever 0.436377 True Chihuahua 1.139560e-01 True American_Staffordshire_terrier 9.968910e-02 True
1339 758474966123810816 https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg 1 Pembroke 0.546145 True Cardigan 2.442000e-01 True German_shepherd 1.004290e-01 True
1340 758740312047005698 https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg 1 Chesapeake_Bay_retriever 0.848514 True Labrador_retriever 1.100540e-01 True curly-coated_retriever 2.520140e-02 True
1341 758828659922702336 https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg 1 Chesapeake_Bay_retriever 0.480048 True vizsla 2.645220e-01 True Weimaraner 1.218400e-01 True
1342 758854675097526272 https://pbs.twimg.com/media/Cof-SuqVYAAs4kZ.jpg 4 barrow 0.974047 False Old_English_sheepdog 2.379140e-02 True komondor 1.246300e-03 True
1343 759047813560868866 https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg 1 Labrador_retriever 0.778546 True bathing_cap 1.542540e-01 False golden_retriever 2.497160e-02 True
1344 759099523532779520 https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg 1 Shetland_sheepdog 0.129034 True kelpie 1.175080e-01 True Siberian_husky 1.067080e-01 True
1345 759159934323924993 https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True
1346 759197388317847553 https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg 1 kuvasz 0.511341 True golden_retriever 7.689910e-02 True white_wolf 6.326940e-02 False
1347 759447681597108224 https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg 1 kuvasz 0.223148 True Bedlington_terrier 2.207310e-01 True teddy 1.813030e-01 False
1348 759557299618865152 https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg 2 golden_retriever 0.763333 True Chesapeake_Bay_retriever 1.942510e-01 True Labrador_retriever 1.222540e-02 True
1349 759566828574212096 https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg 1 Labrador_retriever 0.967397 True golden_retriever 1.664140e-02 True ice_bear 1.485760e-02 False
1350 759793422261743616 https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg 2 golden_retriever 0.985876 True Labrador_retriever 1.947770e-03 True kuvasz 1.751740e-03 True
1351 759846353224826880 https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg 1 Sussex_spaniel 0.355395 True vizsla 1.410940e-01 True otterhound 9.219820e-02 True
1352 759923798737051648 https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg 1 Labrador_retriever 0.324579 True seat_belt 1.091680e-01 False pug 1.024660e-01 True
1353 760190180481531904 https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg 1 balloon 0.917525 False confectionery 4.932910e-02 False maraca 1.764780e-02 False
1354 760252756032651264 https://pbs.twimg.com/media/Coz12OLWgAADdys.jpg 1 radio_telescope 0.155279 False dam 1.545150e-01 False crane 9.804000e-02 False
1355 760290219849637889 https://pbs.twimg.com/ext_tw_video_thumb/760289324994879489/pu/img/3ItvBEoo4aebPfvr.jpg 1 Old_English_sheepdog 0.302200 True Lhasa 2.588030e-01 True briard 1.792000e-01 True
1356 760539183865880579 https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg 1 Samoyed 0.988013 True malamute 4.518240e-03 True West_Highland_white_terrier 1.189250e-03 True
1357 760641137271070720 https://pbs.twimg.com/media/Co5XExUWgAAL5L_.jpg 1 axolotl 0.132695 False killer_whale 1.311130e-01 False sea_lion 6.965200e-02 False
1358 760656994973933572 https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg 1 golden_retriever 0.760546 True Labrador_retriever 2.320790e-01 True redbone 2.874170e-03 True
1359 760893934457552897 https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg 1 Blenheim_spaniel 0.113992 True cocker_spaniel 1.057800e-01 True borzoi 7.393450e-02 True
1360 761004547850530816 https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg 1 golden_retriever 0.735163 True Sussex_spaniel 6.489700e-02 True Labrador_retriever 4.770370e-02 True
1361 761227390836215808 https://pbs.twimg.com/media/CpBsRleW8AEfO8G.jpg 1 cougar 0.306512 False French_bulldog 2.808020e-01 True boxer 5.452340e-02 True
1362 761292947749015552 https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg 1 standard_poodle 0.660893 True Samoyed 3.148860e-01 True miniature_poodle 8.833830e-03 True
1363 761334018830917632 https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg 1 Norwegian_elkhound 0.822936 True malinois 8.615250e-02 True German_shepherd 6.333290e-02 True
1364 761371037149827077 https://pbs.twimg.com/tweet_video_thumb/CeBym7oXEAEWbEg.jpg 1 brown_bear 0.713293 False Indian_elephant 1.728440e-01 False water_buffalo 3.890220e-02 False
1365 761599872357261312 https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg 1 Gordon_setter 0.240427 True Saluki 2.242690e-01 True Doberman 1.297300e-01 True
1366 761672994376806400 https://pbs.twimg.com/ext_tw_video_thumb/761672828462718981/pu/img/R00UYAAWB3GtuHdI.jpg 1 gondola 0.318851 False sea_lion 3.065250e-01 False pool_table 1.115650e-01 False
1367 761745352076779520 https://pbs.twimg.com/media/CpJDWqhW8AAFt45.jpg 1 paddle 0.393118 False canoe 1.780880e-01 False lakeside 9.971260e-02 False
1368 761750502866649088 https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg 1 golden_retriever 0.586937 True Labrador_retriever 3.982600e-01 True kuvasz 5.409690e-03 True
1369 761976711479193600 https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg 3 Labrador_retriever 0.475552 True Chesapeake_Bay_retriever 8.289800e-02 True Staffordshire_bullterrier 4.846400e-02 True
1370 762035686371364864 https://pbs.twimg.com/ext_tw_video_thumb/762035577168560129/pu/img/kD4TeHRRiSKgOyDx.jpg 1 home_theater 0.063152 False cash_machine 4.669210e-02 False theater_curtain 4.627680e-02 False
1371 762316489655476224 https://pbs.twimg.com/media/CpRKzZKWAAABGh7.jpg 1 African_grey 0.270468 False Madagascar_cat 7.618650e-02 False television 3.330580e-02 False
1372 762464539388485633 https://pbs.twimg.com/media/CpTRc4DUEAAYTq6.jpg 4 chow 0.999953 True Tibetan_mastiff 2.335910e-05 True dhole 3.010330e-06 False
1373 762471784394268675 https://pbs.twimg.com/ext_tw_video_thumb/762471745303355393/pu/img/RKcEUz7-VDipoGKJ.jpg 1 Samoyed 0.540276 True standard_poodle 2.798020e-01 True toy_poodle 1.020580e-01 True
1374 762699858130116608 https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg 1 kelpie 0.519047 True German_shepherd 2.960690e-01 True dingo 6.100530e-02 False
1375 763103485927849985 https://pbs.twimg.com/media/CpcWknPXYAAeLP9.jpg 2 seat_belt 0.685821 False ice_bear 8.159720e-02 False chow 3.908480e-02 True
1376 763183847194451968 https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg 1 miniature_poodle 0.354674 True toy_poodle 3.386420e-01 True teddy 1.558280e-01 False
1377 763837565564780549 https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg 1 malamute 0.375098 True jean 6.936170e-02 False keeshond 5.052760e-02 True
1378 764259802650378240 https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg 1 German_shepherd 0.973677 True malinois 2.594970e-02 True kelpie 1.915680e-04 True
1379 764857477905154048 https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg 1 Bernese_mountain_dog 0.792059 True Appenzeller 1.550340e-01 True EntleBucher 3.837380e-02 True
1380 765222098633691136 https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg 1 dalmatian 0.556595 True whippet 1.510470e-01 True American_Staffordshire_terrier 9.643550e-02 True
1381 765371061932261376 https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg 2 golden_retriever 0.829456 True Labrador_retriever 8.937090e-02 True kuvasz 1.702750e-02 True
1382 765395769549590528 https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg 1 Pembroke 0.509491 True Cardigan 3.304010e-01 True Shetland_sheepdog 3.887490e-02 True
1383 765669560888528897 https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg 1 beagle 0.993333 True Walker_hound 2.902190e-03 True basset 2.415180e-03 True
1384 765719909049503744 https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg 1 golden_retriever 0.969518 True Labrador_retriever 2.169610e-02 True Border_terrier 2.074550e-03 True
1385 766008592277377025 https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg 1 Welsh_springer_spaniel 0.728153 True basset 1.038420e-01 True Brittany_spaniel 6.241430e-02 True
1386 766069199026450432 https://pbs.twimg.com/media/CqGf3xaXYAEh3ak.jpg 1 redbone 0.484855 True beagle 4.375270e-01 True basset 1.058540e-02 True
1387 766078092750233600 https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg 1 toy_poodle 0.420463 True miniature_poodle 1.326400e-01 True Chesapeake_Bay_retriever 1.215230e-01 True
1388 766313316352462849 https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg 1 toy_poodle 0.966896 True miniature_poodle 1.642430e-02 True cocker_spaniel 1.022710e-02 True
1389 766423258543644672 https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg 2 keeshond 0.995823 True Pomeranian 3.897210e-03 True Norwegian_elkhound 2.531090e-04 True
1390 766693177336135680 https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg 1 Doberman 0.948355 True vizsla 1.503200e-02 True Rhodesian_ridgeback 9.630840e-03 True
1391 766793450729734144 https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg 1 beagle 0.451697 True basset 1.975130e-01 True bloodhound 7.269860e-02 True
1392 767122157629476866 https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg 2 toy_poodle 0.873841 True miniature_poodle 5.919180e-02 True Irish_terrier 3.530600e-02 True
1393 767191397493538821 https://pbs.twimg.com/media/CqWcgcqWcAI43jm.jpg 1 patio 0.708665 False boathouse 1.100560e-01 False pier 3.953230e-02 False
1394 767500508068192258 https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg 1 chow 0.483228 True golden_retriever 1.650630e-01 True Norfolk_terrier 6.017290e-02 True
1395 767754930266464257 https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg 1 vizsla 0.307794 True fountain 1.421850e-01 False Chesapeake_Bay_retriever 1.139030e-01 True
1396 767884188863397888 https://pbs.twimg.com/media/CqgSl4DWcAA-x-o.jpg 3 coral_reef 0.327740 False cliff 1.571820e-01 False lakeside 4.880960e-02 False
1397 768193404517830656 https://pbs.twimg.com/media/Cqkr0wiW8AAn2Oi.jpg 1 lion 0.396984 False ram 3.008510e-01 False cheetah 9.447400e-02 False
1398 768473857036525572 https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg 1 Labrador_retriever 0.739170 True Chesapeake_Bay_retriever 2.464880e-01 True kelpie 6.892340e-03 True
1399 768596291618299904 https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg 1 Great_Pyrenees 0.729745 True golden_retriever 2.379610e-01 True Labrador_retriever 2.090330e-02 True
1400 768609597686943744 https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg 1 basenji 0.183283 True Italian_greyhound 1.360120e-01 True whippet 6.012990e-02 True
1401 768855141948723200 https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg 1 chow 0.720219 True Brabancon_griffon 5.836530e-02 True Rottweiler 5.511350e-02 True
1402 768970937022709760 https://pbs.twimg.com/ext_tw_video_thumb/768967618174877700/pu/img/4wfsrs0ZnQ5pstXm.jpg 1 Pomeranian 0.182358 True golden_retriever 1.106580e-01 True mousetrap 8.639890e-02 False
1403 769212283578875904 https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg 1 golden_retriever 0.166538 True Pekinese 1.482150e-01 True cocker_spaniel 8.273510e-02 True
1404 769695466921623552 https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg 1 pug 0.407117 True muzzle 1.656380e-01 False kuvasz 4.583720e-02 True
1405 769940425801170949 https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg 1 miniature_pinscher 0.796313 True Chihuahua 1.554130e-01 True Staffordshire_bullterrier 3.094330e-02 True
1406 770069151037685760 https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg 1 Boston_bull 0.414965 True American_Staffordshire_terrier 2.869850e-01 True Staffordshire_bullterrier 1.149700e-01 True
1407 770093767776997377 https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg 1 golden_retriever 0.843799 True Labrador_retriever 5.295590e-02 True kelpie 3.571110e-02 True
1408 770293558247038976 https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg 1 Italian_greyhound 0.931668 True Mexican_hairless 3.889620e-02 True whippet 1.315140e-02 True
1409 770414278348247044 https://pbs.twimg.com/media/CrEPsfWXEAAKvem.jpg 1 maillot 0.580528 False maillot 8.144890e-02 False golden_retriever 5.356960e-02 True
1410 770655142660169732 https://pbs.twimg.com/media/CrHqwjWXgAAgJSe.jpg 1 Madagascar_cat 0.494803 False skunk 1.611840e-01 False paper_towel 9.157150e-02 False
1411 770772759874076672 https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg 1 chow 0.979515 True golden_retriever 1.021870e-02 True Pomeranian 4.606040e-03 True
1412 770787852854652928 https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg 1 Bernese_mountain_dog 0.787812 True Greater_Swiss_Mountain_dog 1.639460e-01 True EntleBucher 2.029340e-02 True
1413 771004394259247104 https://pbs.twimg.com/media/CrMmVqyWcAIDCHI.jpg 1 home_theater 0.414338 False iPod 5.274130e-02 False pop_bottle 4.882060e-02 False
1414 771014301343748096 https://pbs.twimg.com/media/CrMxZzgWIAQUxzx.jpg 1 meerkat 0.202335 False doormat 1.117900e-01 False macaque 8.892530e-02 False
1415 771102124360998913 https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg 1 Labrador_retriever 0.568789 True pug 1.799180e-01 True Staffordshire_bullterrier 3.443740e-02 True
1416 771136648247640064 https://pbs.twimg.com/media/CrOgsIBWYAA8Dtb.jpg 1 bathtub 0.368660 False golden_retriever 2.974020e-01 True tub 2.017110e-01 False
1417 771171053431250945 https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg 3 Samoyed 0.978833 True Pomeranian 1.276300e-02 True Eskimo_dog 1.853050e-03 True
1418 771380798096281600 https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg 1 collie 0.503728 True Border_collie 4.509440e-01 True English_springer 1.269280e-02 True
1419 771500966810099713 https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg 1 Labrador_retriever 0.833952 True golden_retriever 1.032230e-01 True soccer_ball 1.209390e-02 False
1420 771770456517009408 https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg 1 papillon 0.533180 True collie 1.920310e-01 True Border_collie 1.216260e-01 True
1421 772102971039580160 https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg 1 Pembroke 0.541780 True Cardigan 2.605040e-01 True Shetland_sheepdog 6.370310e-02 True
1422 772114945936949249 https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg 1 Chihuahua 0.803293 True toy_terrier 5.298000e-02 True Italian_greyhound 3.723880e-02 True
1423 772117678702071809 https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg 1 Labrador_retriever 0.217821 True beagle 1.576770e-01 True golden_retriever 1.277260e-01 True
1424 772152991789019136 https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg 2 golden_retriever 0.275318 True Irish_setter 1.009880e-01 True vizsla 7.352490e-02 True
1425 772193107915964416 https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg 1 Pembroke 0.367945 True Chihuahua 2.235220e-01 True Pekinese 1.648710e-01 True
1426 772581559778025472 https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg 3 Newfoundland 0.574345 True Border_collie 1.283520e-01 True Saint_Bernard 5.947550e-02 True
1427 772615324260794368 https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg 1 dalmatian 0.556595 True whippet 1.510470e-01 True American_Staffordshire_terrier 9.643550e-02 True
1428 772826264096874500 https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg 1 basset 0.915351 True Walker_hound 7.241590e-02 True beagle 8.228940e-03 True
1429 772877495989305348 https://pbs.twimg.com/ext_tw_video_thumb/772874595468795904/pu/img/t8gbjy2rA19xtQYR.jpg 1 tabby 0.218303 False Norwegian_elkhound 1.385230e-01 True wombat 7.421720e-02 False
1430 773191612633579521 https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg 1 Blenheim_spaniel 0.427766 True Shih-Tzu 2.192560e-01 True Welsh_springer_spaniel 1.446140e-01 True
1431 773247561583001600 https://pbs.twimg.com/media/Crsgi9dWEAApQd8.jpg 1 seat_belt 0.713588 False miniature_pinscher 8.336880e-02 True Brabancon_griffon 7.569610e-02 True
1432 773308824254029826 https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg 1 shopping_cart 0.572349 False Labrador_retriever 1.514060e-01 True shopping_basket 1.071020e-01 False
1433 773547596996571136 https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg 1 Norwegian_elkhound 0.372202 True Chesapeake_Bay_retriever 1.371870e-01 True malamute 7.143620e-02 True
1434 773670353721753600 https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg 1 Old_English_sheepdog 0.969311 True Maltese_dog 1.324300e-02 True soft-coated_wheaten_terrier 4.857310e-03 True
1435 773704687002451968 https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg 2 silky_terrier 0.324251 True Yorkshire_terrier 1.812100e-01 True Airedale 1.334360e-01 True
1436 773922284943896577 https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg 1 Pomeranian 0.554331 True Samoyed 4.321580e-01 True chow 3.199420e-03 True
1437 773985732834758656 https://pbs.twimg.com/media/Cr2_6R8WAAAUMtc.jpg 4 giant_panda 0.451149 False fur_coat 1.480010e-01 False pug 1.095700e-01 True
1438 774314403806253056 https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg 3 Eskimo_dog 0.596045 True Siberian_husky 2.230670e-01 True Saluki 3.632470e-02 True
1439 774639387460112384 https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg 1 Walker_hound 0.627593 True basenji 1.287050e-01 True Ibizan_hound 1.262820e-01 True
1440 774757898236878852 https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg 1 toy_poodle 0.719941 True miniature_poodle 2.515460e-01 True Lakeland_terrier 7.008380e-03 True
1441 775085132600442880 https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg 1 chow 0.316565 True golden_retriever 2.419290e-01 True Pomeranian 1.575240e-01 True
1442 775364825476165632 https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg 3 beagle 0.571229 True Chihuahua 1.752570e-01 True Pembroke 3.430630e-02 True
1443 775729183532220416 https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg 1 web_site 0.989407 False hand-held_computer 2.139020e-03 False menu 2.115360e-03 False
1444 775733305207554048 https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg 1 long-horned_beetle 0.613852 False ox 2.947280e-02 False rhinoceros_beetle 2.780610e-02 False
1445 775842724423557120 https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg 2 chow 0.520022 True bath_towel 2.877470e-02 False French_bulldog 2.599010e-02 True
1446 775898661951791106 https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg 1 golden_retriever 0.945523 True Labrador_retriever 4.231910e-02 True doormat 3.956260e-03 False
1447 776088319444877312 https://pbs.twimg.com/media/CsU4NKkW8AUI5eG.jpg 3 web_site 0.999916 False pug 7.657020e-05 True menu 2.164680e-06 False
1448 776113305656188928 https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg 1 mousetrap 0.777468 False black_widow 9.394020e-02 False paddlewheel 1.749190e-02 False
1449 776201521193218049 https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg 1 Rottweiler 0.502228 True black-and-tan_coonhound 1.545940e-01 True bloodhound 1.351760e-01 True
1450 776218204058357768 https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg 1 Samoyed 0.940326 True Pomeranian 5.552720e-02 True keeshond 2.226350e-03 True
1451 776477788987613185 https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg 1 Labrador_retriever 0.884839 True Chesapeake_Bay_retriever 5.756510e-02 True paintbrush 5.766080e-03 False
1452 776813020089548800 https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg 1 toy_poodle 0.516610 True miniature_poodle 2.550330e-01 True standard_poodle 1.689890e-01 True
1453 776819012571455488 https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg 3 Chihuahua 0.346545 True dalmatian 1.662460e-01 True toy_terrier 1.175020e-01 True
1454 777189768882946048 https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg 2 Chihuahua 0.988412 True Mexican_hairless 4.177220e-03 True hog 1.506580e-03 False
1455 777621514455814149 https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg 1 chow 0.999823 True Norwich_terrier 5.644850e-05 True Pomeranian 2.768060e-05 True
1456 777641927919427584 https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg 1 golden_retriever 0.964929 True Labrador_retriever 1.158370e-02 True refrigerator 7.498620e-03 False
1457 777684233540206592 https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg 1 cocker_spaniel 0.253442 True golden_retriever 1.628500e-01 True otterhound 1.109210e-01 True
1458 777885040357281792 https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg 1 Afghan_hound 0.123529 True basset 1.196820e-01 True Siberian_husky 1.087090e-01 True
1459 778027034220126208 https://pbs.twimg.com/media/Cswbc2yWcAAVsCJ.jpg 1 clumber 0.946718 True cocker_spaniel 1.594990e-02 True Lhasa 6.519110e-03 True
1460 778039087836069888 https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg 2 German_shepherd 0.717776 True malinois 1.111750e-01 True Norwegian_elkhound 5.880240e-02 True
1461 778286810187399168 https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg 1 Boston_bull 0.322070 True pug 2.299030e-01 True muzzle 1.014200e-01 False
1462 778383385161035776 https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg 1 collie 0.345266 True borzoi 3.128230e-01 True Border_collie 2.130110e-01 True
1463 778396591732486144 https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg 1 hippopotamus 0.581403 False doormat 1.524450e-01 False sea_lion 2.636430e-02 False
1464 778408200802557953 https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg 3 Pembroke 0.848362 True Cardigan 1.081240e-01 True beagle 1.194170e-02 True
1465 778624900596654080 https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg 2 Airedale 0.786089 True Irish_terrier 1.214880e-01 True Lakeland_terrier 1.460310e-02 True
1466 778650543019483137 https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg 1 German_shepherd 0.515699 True malinois 3.002920e-01 True kelpie 8.702230e-02 True
1467 778748913645780993 https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg 1 Staffordshire_bullterrier 0.351434 True boxer 2.014780e-01 True American_Staffordshire_terrier 1.428380e-01 True
1468 778990705243029504 https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg 2 cocker_spaniel 0.715351 True Labrador_retriever 2.070560e-01 True Chihuahua 2.851940e-02 True
1469 779056095788752897 https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg 1 Chihuahua 0.721188 True toy_terrier 1.129430e-01 True kelpie 5.336450e-02 True
1470 779123168116150273 https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg 1 toy_poodle 0.431080 True soft-coated_wheaten_terrier 6.036490e-02 True cocker_spaniel 5.984540e-02 True
1471 779377524342161408 https://pbs.twimg.com/ext_tw_video_thumb/779377444025499652/pu/img/eIiLDy9F6rPNarEc.jpg 1 sundial 0.170921 False cash_machine 6.035860e-02 False maze 5.498140e-02 False
1472 779834332596887552 https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg 1 golden_retriever 0.993830 True cocker_spaniel 3.142710e-03 True Great_Pyrenees 9.174140e-04 True
1473 780192070812196864 https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg 1 vizsla 0.144012 True mongoose 9.147360e-02 False hatchet 7.354470e-02 False
1474 780459368902959104 https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg 1 Great_Dane 0.382491 True German_shepherd 3.120260e-01 True bull_mastiff 3.327190e-02 True
1475 780476555013349377 https://pbs.twimg.com/tweet_video_thumb/CtTFZZfUsAE5hgp.jpg 1 pug 0.919255 True French_bulldog 3.235030e-02 True bull_mastiff 2.846790e-02 True
1476 780496263422808064 https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg 1 pug 0.997310 True Brabancon_griffon 1.185630e-03 True French_bulldog 4.279890e-04 True
1477 780543529827336192 https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg 1 golden_retriever 0.628312 True Labrador_retriever 3.173650e-01 True Tibetan_mastiff 1.226010e-02 True
1478 780601303617732608 https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg 1 Saint_Bernard 0.995143 True Cardigan 3.043590e-03 True English_springer 1.049550e-03 True
1479 780800785462489090 https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg 2 Siberian_husky 0.951963 True Eskimo_dog 3.534610e-02 True Pembroke 8.861940e-03 True
1480 780858289093574656 https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg 1 Chesapeake_Bay_retriever 0.488555 True Sussex_spaniel 2.716550e-01 True kelpie 1.069130e-01 True
1481 780931614150983680 https://pbs.twimg.com/media/CtZtJxAXEAAyPGd.jpg 1 padlock 0.731564 False necklace 6.546160e-02 False chain 3.646910e-02 False
1482 781163403222056960 https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg 1 Shetland_sheepdog 0.973841 True collie 2.518760e-02 True Border_collie 2.973110e-04 True
1483 781251288990355457 https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg 2 Mexican_hairless 0.887771 True Italian_greyhound 3.066640e-02 True seat_belt 2.672980e-02 False
1484 781524693396357120 https://pbs.twimg.com/media/CtiIj0AWcAEBDvw.jpg 1 tennis_ball 0.994712 False Chesapeake_Bay_retriever 3.522500e-03 True Labrador_retriever 9.214390e-04 True
1485 781661882474196992 https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg 1 Pembroke 0.438087 True golden_retriever 2.269540e-01 True collie 7.065160e-02 True
1486 781955203444699136 https://pbs.twimg.com/media/CtoQGu4XgAQgv5m.jpg 1 pool_table 0.179568 False dining_table 1.543960e-01 False microwave 3.369050e-02 False
1487 782021823840026624 https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg 1 golden_retriever 0.383223 True cocker_spaniel 1.659300e-01 True Chesapeake_Bay_retriever 1.181990e-01 True
1488 782305867769217024 https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg 1 briard 0.504427 True soft-coated_wheaten_terrier 3.906780e-01 True Lhasa 3.459550e-02 True
1489 782598640137187329 https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg 1 malamute 0.840871 True Tibetan_mastiff 1.405160e-01 True Eskimo_dog 1.201160e-02 True
1490 782722598790725632 https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg 1 Irish_setter 0.574557 True golden_retriever 3.392510e-01 True seat_belt 4.610820e-02 False
1491 782747134529531904 https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg 1 golden_retriever 0.560699 True otterhound 1.994820e-01 True clumber 4.068180e-02 True
1492 782969140009107456 https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg 1 seat_belt 0.474292 False golden_retriever 1.713930e-01 True Labrador_retriever 1.105920e-01 True
1493 783085703974514689 https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg 1 Chesapeake_Bay_retriever 0.240602 True Airedale 1.640880e-01 True boxer 1.345060e-01 True
1494 783334639985389568 https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg 2 Cardigan 0.593858 True Shetland_sheepdog 1.306110e-01 True Pembroke 1.008420e-01 True
1495 783347506784731136 https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg 1 Cardigan 0.611525 True Pembroke 3.685660e-01 True Chihuahua 3.329570e-03 True
1496 783391753726550016 https://pbs.twimg.com/media/Ct8qn8EWIAAk9zP.jpg 4 Norwegian_elkhound 0.877130 True cairn 8.624060e-02 True keeshond 1.101910e-02 True
1497 783466772167098368 https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg 1 Chihuahua 0.789000 True miniature_pinscher 1.159160e-01 True toy_terrier 3.629390e-02 True
1498 783695101801398276 https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg 3 chow 0.314265 True golden_retriever 3.004350e-01 True Australian_terrier 4.948690e-02 True
1499 783821107061198850 https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg 1 Lakeland_terrier 0.265659 True golden_retriever 1.964140e-01 True standard_poodle 1.335340e-01 True
1500 783839966405230592 https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg 1 quilt 0.333739 False Siamese_cat 1.362450e-01 False three-toed_sloth 1.174640e-01 False
1501 784431430411685888 https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg 1 miniature_poodle 0.744819 True toy_poodle 2.431920e-01 True standard_poodle 1.092020e-02 True
1502 784517518371221505 https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg 2 malamute 0.757764 True Eskimo_dog 1.512480e-01 True Siberian_husky 8.484020e-02 True
1503 784826020293709826 https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg 1 chow 0.090341 True binoculars 8.349880e-02 False Irish_setter 7.745560e-02 True
1504 785170936622350336 https://pbs.twimg.com/media/CuV8yfxXEAAUlye.jpg 2 seat_belt 0.891193 False Eskimo_dog 2.749440e-02 True Samoyed 1.953030e-02 True
1505 785264754247995392 https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg 1 teddy 0.674893 False cradle 5.673960e-02 False chow 5.613700e-02 True
1506 785533386513321988 https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg 2 miniature_pinscher 0.436023 True black-and-tan_coonhound 2.580490e-01 True Rottweiler 1.452310e-01 True
1507 785639753186217984 https://pbs.twimg.com/media/CucnLmeWAAALOSC.jpg 1 porcupine 0.978042 False sea_urchin 6.106300e-03 False echidna 5.441970e-03 False
1508 785872687017132033 https://pbs.twimg.com/ext_tw_video_thumb/785872596088811520/pu/img/5O-_BgqdFQu_2Bt7.jpg 1 Great_Pyrenees 0.392108 True golden_retriever 1.983580e-01 True Pekinese 1.433280e-01 True
1509 785927819176054784 https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg 1 teddy 0.972070 False toy_poodle 8.492620e-03 True chow 2.882710e-03 True
1510 786036967502913536 https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg 1 golden_retriever 0.993830 True cocker_spaniel 3.142710e-03 True Great_Pyrenees 9.174140e-04 True
1511 786233965241827333 https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg 1 Labrador_retriever 0.478193 True schipperke 2.248170e-01 True Staffordshire_bullterrier 7.739560e-02 True
1512 786363235746385920 https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg 1 golden_retriever 0.929266 True Labrador_retriever 6.286670e-02 True Saluki 2.156690e-03 True
1513 786595970293370880 https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg 1 Pembroke 0.709512 True Cardigan 2.871780e-01 True chow 5.701760e-04 True
1514 786664955043049472 https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg 1 Leonberg 0.512034 True keeshond 4.648160e-01 True Pomeranian 7.812490e-03 True
1515 786709082849828864 https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg 1 Pomeranian 0.467321 True Persian_cat 1.229780e-01 False chow 1.026540e-01 True
1516 786963064373534720 https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg 1 golden_retriever 0.915303 True Saluki 4.621260e-02 True Labrador_retriever 3.750410e-02 True
1517 787322443945877504 https://pbs.twimg.com/media/Cu0hlfwWYAEdnXO.jpg 1 seat_belt 0.747739 False golden_retriever 1.057030e-01 True dingo 1.725680e-02 False
1518 787397959788929025 https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg 1 Chihuahua 0.900483 True toy_terrier 2.108450e-02 True miniature_pinscher 1.948400e-02 True
1519 787717603741622272 https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg 3 German_shepherd 0.992339 True malinois 4.920390e-03 True kelpie 8.528020e-04 True
1520 787810552592695296 https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg 2 pug 0.362835 True French_bulldog 2.218640e-01 True English_setter 8.041830e-02 True
1521 788039637453406209 https://pbs.twimg.com/media/Cu-t20yWEAAFHXi.jpg 1 beach_wagon 0.362925 False minivan 3.047590e-01 False limousine 1.017020e-01 False
1522 788070120937619456 https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg 1 golden_retriever 0.735163 True Sussex_spaniel 6.489700e-02 True Labrador_retriever 4.770370e-02 True
1523 788150585577050112 https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg 3 chow 0.814145 True Pomeranian 1.127040e-01 True Chihuahua 1.588320e-02 True
1524 788178268662984705 https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg 2 Samoyed 0.735480 True Pomeranian 7.510100e-02 True Arctic_fox 3.607190e-02 False
1525 788412144018661376 https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg 1 golden_retriever 0.805238 True Labrador_retriever 1.137980e-01 True Brittany_spaniel 3.855870e-02 True
1526 788765914992902144 https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg 1 cocker_spaniel 0.500509 True golden_retriever 2.727340e-01 True jigsaw_puzzle 4.147580e-02 False
1527 788908386943430656 https://pbs.twimg.com/media/CvLD-mbWYAAFI8w.jpg 1 remote_control 0.881538 False oscilloscope 3.551310e-02 False golden_retriever 3.408970e-02 True
1528 789137962068021249 https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg 2 Chihuahua 0.746135 True Pekinese 7.038340e-02 True Pembroke 4.923690e-02 True
1529 789268448748703744 https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg 1 malamute 0.812860 True Siberian_husky 1.208530e-01 True Eskimo_dog 2.426930e-02 True
1530 789530877013393408 https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg 3 schipperke 0.363272 True kelpie 1.970210e-01 True Norwegian_elkhound 1.510240e-01 True
1531 789599242079838210 https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg 2 Chesapeake_Bay_retriever 0.878822 True beagle 1.857030e-02 True Labrador_retriever 1.749850e-02 True
1532 789628658055020548 https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg 1 chow 0.260702 True cougar 8.814270e-02 False Pomeranian 7.988310e-02 True
1533 789986466051088384 https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg 1 tub 0.479477 False bathtub 3.251060e-01 False golden_retriever 7.853050e-02 True
1534 790277117346975746 https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg 1 Labrador_retriever 0.427742 True Great_Dane 1.905030e-01 True curly-coated_retriever 1.464270e-01 True
1535 790337589677002753 https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg 1 Pembroke 0.658808 True Cardigan 1.530960e-01 True toy_terrier 1.022990e-01 True
1536 790581949425475584 https://pbs.twimg.com/media/Cvi2FiKWgAAif1u.jpg 2 refrigerator 0.998886 False malinois 1.529990e-04 True kelpie 1.308170e-04 True
1537 790698755171364864 https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg 1 Bernese_mountain_dog 0.996541 True EntleBucher 1.056980e-03 True Appenzeller 9.979070e-04 True
1538 790723298204217344 https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg 1 tub 0.479477 False bathtub 3.251060e-01 False golden_retriever 7.853050e-02 True
1539 790946055508652032 https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg 1 dishwasher 0.700466 False golden_retriever 2.457730e-01 True chow 3.901170e-02 True
1540 790987426131050500 https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg 1 cocker_spaniel 0.349195 True flat-coated_retriever 3.095350e-01 True Newfoundland 1.047680e-01 True
1541 791026214425268224 https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg 1 malamute 0.375098 True jean 6.936170e-02 False keeshond 5.052760e-02 True
1542 791312159183634433 https://pbs.twimg.com/media/CvtONV4WAAAQ3Rn.jpg 4 miniature_pinscher 0.892925 True toy_terrier 9.552380e-02 True Doberman 3.544260e-03 True
1543 791406955684368384 https://pbs.twimg.com/media/CvukbEkWAAAV-69.jpg 4 Pembroke 0.972629 True Cardigan 2.702590e-02 True basenji 1.525020e-04 True
1544 791672322847637504 https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg 1 golden_retriever 0.705092 True Labrador_retriever 2.197210e-01 True kuvasz 1.596500e-02 True
1545 792050063153438720 https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg 2 komondor 0.942856 True swab 5.271520e-02 False Tibetan_terrier 2.743000e-03 True
1546 792394556390137856 https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg 2 cocker_spaniel 0.746387 True Irish_setter 9.161510e-02 True miniature_poodle 6.107820e-02 True
1547 792773781206999040 https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg 1 Yorkshire_terrier 0.912804 True silky_terrier 6.782250e-02 True Australian_terrier 4.450690e-03 True
1548 792883833364439040 https://pbs.twimg.com/media/CwDjoH3WAAIniIs.jpg 3 jack-o'-lantern 0.999306 False basketball 1.131290e-04 False standard_poodle 8.314510e-05 True
1549 792913359805018113 https://pbs.twimg.com/media/CwD-eCLWIAA6v0B.jpg 4 web_site 0.226716 False lighter 8.194140e-02 False switch 3.900860e-02 False
1550 793120401413079041 https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg 1 Labrador_retriever 0.724944 True golden_retriever 1.697440e-01 True kuvasz 3.550230e-02 True
1551 793135492858580992 https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg 1 bakery 0.737041 False saltshaker 5.239590e-02 False teddy 4.659260e-02 False
1552 793150605191548928 https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg 1 Italian_greyhound 0.193869 True bluetick 1.603800e-01 True standard_poodle 1.259820e-01 True
1553 793165685325201412 https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg 1 golden_retriever 0.946224 True Labrador_retriever 3.647660e-02 True doormat 2.352850e-03 False
1554 793180763617361921 https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg 1 Lakeland_terrier 0.266824 True Irish_terrier 2.187830e-01 True Airedale 1.329600e-01 True
1555 793195938047070209 https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg 2 Labrador_retriever 0.654762 True golden_retriever 7.410000e-02 True Chihuahua 4.233930e-02 True
1556 793210959003287553 https://pbs.twimg.com/media/CwINKJeW8AYHVkn.jpg 1 doormat 0.874431 False French_bulldog 1.875910e-02 True Boston_bull 1.513440e-02 True
1557 793226087023144960 https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg 1 wire-haired_fox_terrier 0.456047 True Lakeland_terrier 2.734280e-01 True English_springer 8.364330e-02 True
1558 793241302385262592 https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg 1 golden_retriever 0.559308 True Labrador_retriever 3.902220e-01 True cocker_spaniel 3.631570e-02 True
1559 793256262322548741 https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg 1 basset 0.207622 True Walker_hound 6.057420e-02 True beagle 4.122050e-02 True
1560 793271401113350145 https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg 1 Siberian_husky 0.231695 True Eskimo_dog 2.067490e-01 True Pembroke 7.011950e-02 True
1561 793286476301799424 https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg 1 Afghan_hound 0.274637 True borzoi 1.422040e-01 True doormat 1.096770e-01 False
1562 793500921481273345 https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg 2 golden_retriever 0.326122 True Labrador_retriever 2.199040e-01 True Chesapeake_Bay_retriever 1.633660e-01 True
1563 793601777308463104 https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg 1 miniature_pinscher 0.538981 True Chihuahua 2.178300e-01 True toy_terrier 8.914870e-02 True
1564 793614319594401792 https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg 1 golden_retriever 0.705092 True Labrador_retriever 2.197210e-01 True kuvasz 1.596500e-02 True
1565 793845145112371200 https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg 1 Old_English_sheepdog 0.765277 True Bedlington_terrier 1.127530e-01 True Kerry_blue_terrier 4.766170e-02 True
1566 793962221541933056 https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg 1 Labrador_retriever 0.861651 True golden_retriever 4.446180e-02 True Staffordshire_bullterrier 1.649670e-02 True
1567 794205286408003585 https://pbs.twimg.com/media/CwWVe_3WEAAHAvx.jpg 3 pedestal 0.662660 False fountain 2.948270e-01 False brass 2.037110e-02 False
1568 794332329137291264 https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg 1 Samoyed 0.988307 True malamute 4.906350e-03 True Great_Pyrenees 2.901290e-03 True
1569 794355576146903043 https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg 1 cocker_spaniel 0.500509 True golden_retriever 2.727340e-01 True jigsaw_puzzle 4.147580e-02 False
1570 794926597468000259 https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg 1 teddy 0.569566 False bath_towel 1.737450e-01 False toy_poodle 3.766180e-02 True
1571 794983741416415232 https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg 3 schipperke 0.363272 True kelpie 1.970210e-01 True Norwegian_elkhound 1.510240e-01 True
1572 795076730285391872 https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg 2 gas_pump 0.676439 False harvester 4.999530e-02 False swing 4.465960e-02 False
1573 795400264262053889 https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg 2 golden_retriever 0.925494 True Labrador_retriever 5.924080e-02 True tennis_ball 4.495340e-03 False
1574 795464331001561088 https://pbs.twimg.com/ext_tw_video_thumb/795464066940764160/pu/img/jPkMMQXdydb7CqFX.jpg 1 golden_retriever 0.193082 True Chesapeake_Bay_retriever 1.579270e-01 True soft-coated_wheaten_terrier 1.246840e-01 True
1575 796031486298386433 https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg 1 golden_retriever 0.893775 True Labrador_retriever 7.013980e-02 True doormat 8.418530e-03 False
1576 796080075804475393 https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg 1 chow 0.973846 True Tibetan_mastiff 1.410990e-02 True gibbon 2.358320e-03 False
1577 796116448414461957 https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg 1 Cardigan 0.700182 True Pembroke 2.607380e-01 True papillon 1.710990e-02 True
1578 796149749086875649 https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg 1 golden_retriever 0.600276 True Labrador_retriever 1.407980e-01 True seat_belt 8.735480e-02 False
1579 796177847564038144 https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg 1 golden_retriever 0.600276 True Labrador_retriever 1.407980e-01 True seat_belt 8.735480e-02 False
1580 796387464403357696 https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg 1 Pekinese 0.461164 True Pomeranian 2.886500e-01 True Siamese_cat 5.242300e-02 False
1581 796484825502875648 https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg 1 cocker_spaniel 0.116924 True seat_belt 1.075110e-01 False Australian_terrier 9.984340e-02 True
1582 796759840936919040 https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg 1 American_Staffordshire_terrier 0.463996 True Staffordshire_bullterrier 1.555660e-01 True Weimaraner 1.375870e-01 True
1583 796865951799083009 https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg 1 Cardigan 0.839129 True Boston_bull 8.069850e-02 True Pembroke 3.450500e-02 True
1584 797236660651966464 https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg 2 collie 0.767005 True Border_collie 1.008440e-01 True kelpie 4.836810e-02 True
1585 797545162159308800 https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg 1 Pembroke 0.954089 True Cardigan 3.364390e-02 True papillon 9.735660e-03 True
1586 797971864723324932 https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg 1 American_Staffordshire_terrier 0.489845 True Chihuahua 3.057600e-01 True Staffordshire_bullterrier 7.279910e-02 True
1587 798209839306514432 https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg 1 Pekinese 0.524583 True Shih-Tzu 1.029310e-01 True Pomeranian 9.789310e-02 True
1588 798340744599797760 https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg 1 papillon 0.533180 True collie 1.920310e-01 True Border_collie 1.216260e-01 True
1589 798628517273620480 https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True
1590 798644042770751489 https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True
1591 798665375516884993 https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg 1 chow 0.243529 True hamster 2.271500e-01 False Pomeranian 5.605670e-02 True
1592 798673117451325440 https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg 1 dough 0.806757 False bakery 2.790660e-02 False French_loaf 1.818890e-02 False
1593 798694562394996736 https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg 1 Chihuahua 0.615163 True Pembroke 1.595090e-01 True basenji 8.446570e-02 True
1594 798697898615730177 https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg 1 Labrador_retriever 0.868671 True carton 9.509520e-02 False pug 7.651370e-03 True
1595 798925684722855936 https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg 1 West_Highland_white_terrier 0.539463 True cairn 1.848970e-01 True Norfolk_terrier 1.630240e-01 True
1596 798933969379225600 https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg 1 Siberian_husky 0.703224 True Eskimo_dog 2.293510e-01 True malamute 4.435080e-02 True
1597 799063482566066176 https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg 2 Norfolk_terrier 0.334436 True Norwich_terrier 2.315730e-01 True Australian_terrier 2.142030e-01 True
1598 799297110730567681 https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg 1 malamute 0.985028 True Siberian_husky 5.834420e-03 True Eskimo_dog 5.442810e-03 True
1599 799422933579902976 https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg 1 miniature_pinscher 0.583630 True redbone 2.760950e-01 True toy_terrier 1.855010e-02 True
1600 799757965289017345 https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg 1 Border_collie 0.442534 True collie 2.886840e-01 True Shetland_sheepdog 1.963990e-01 True
1601 799774291445383169 https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg 1 chow 0.316565 True golden_retriever 2.419290e-01 True Pomeranian 1.575240e-01 True
1602 800018252395122689 https://pbs.twimg.com/ext_tw_video_thumb/800018199223959552/pu/img/3Qp73edtkZO-qWPy.jpg 1 vacuum 0.289485 False punching_bag 2.432970e-01 False barbell 1.436300e-01 False
1603 800141422401830912 https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg 3 golden_retriever 0.938048 True kuvasz 2.511950e-02 True Labrador_retriever 2.297730e-02 True
1604 800388270626521089 https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg 2 golden_retriever 0.359860 True Pembroke 1.942070e-01 True collie 1.546030e-01 True
1605 800443802682937345 https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg 1 mousetrap 0.777468 False black_widow 9.394020e-02 False paddlewheel 1.749190e-02 False
1606 800459316964663297 https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg 1 teddy 0.311928 False ice_bear 1.846570e-01 False Christmas_stocking 1.732290e-01 False
1607 800513324630806528 https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg 1 Pembroke 0.828904 True Cardigan 1.673730e-01 True Chihuahua 7.659340e-04 True
1608 800751577355128832 https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg 2 cocker_spaniel 0.771984 True miniature_poodle 7.665280e-02 True toy_poodle 3.961830e-02 True
1609 801115127852503040 https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg 1 dalmatian 0.823356 True English_setter 9.460190e-02 True bluetick 2.195340e-02 True
1610 801167903437357056 https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg 1 cocker_spaniel 0.740220 True Dandie_Dinmont 6.160450e-02 True English_setter 4.133140e-02 True
1611 801285448605831168 https://pbs.twimg.com/media/Cx683NPUAAAjyU4.jpg 1 minivan 0.789376 False beach_wagon 8.112500e-02 False convertible 6.453380e-02 False
1612 801538201127157760 https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg 1 Pembroke 0.550506 True Cardigan 3.066120e-01 True Shetland_sheepdog 5.423000e-02 True
1613 801958328846974976 https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg 1 Staffordshire_bullterrier 0.327887 True American_Staffordshire_terrier 2.719160e-01 True Labrador_retriever 2.476190e-01 True
1614 802239329049477120 https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg 2 Eskimo_dog 0.482498 True Siberian_husky 3.357740e-01 True malamute 1.345890e-01 True
1615 802247111496568832 https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg 1 Chihuahua 0.721188 True toy_terrier 1.129430e-01 True kelpie 5.336450e-02 True
1616 802265048156610565 https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg 1 Labrador_retriever 0.897162 True beagle 1.689480e-02 True Rhodesian_ridgeback 1.206060e-02 True
1617 802323869084381190 https://pbs.twimg.com/media/CyJtSmDUAAA2F9x.jpg 4 home_theater 0.765069 False television 2.035780e-01 False entertainment_center 1.864350e-02 False
1618 802572683846291456 https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg 1 golden_retriever 0.610171 True Labrador_retriever 1.732520e-01 True cocker_spaniel 1.632570e-01 True
1619 802624713319034886 https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg 1 cocker_spaniel 0.253442 True golden_retriever 1.628500e-01 True otterhound 1.109210e-01 True
1620 802952499103731712 https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg 1 chow 0.944032 True golden_retriever 1.723980e-02 True Pomeranian 1.208480e-02 True
1621 803276597545603072 https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg 1 Pembroke 0.457086 True chow 3.078010e-01 True golden_retriever 4.998820e-02 True
1622 803380650405482500 https://pbs.twimg.com/media/CyYub2kWEAEYdaq.jpg 1 bookcase 0.890601 False entertainment_center 1.928740e-02 False file 9.489540e-03 False
1623 803638050916102144 https://pbs.twimg.com/ext_tw_video_thumb/803638023904559104/pu/img/vxm0Htm5iIV7EOAQ.jpg 1 Labrador_retriever 0.372776 True golden_retriever 3.436660e-01 True Great_Pyrenees 6.724230e-02 True
1624 803692223237865472 https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg 1 Lakeland_terrier 0.530104 True Irish_terrier 1.973140e-01 True Airedale 8.251460e-02 True
1625 803773340896923648 https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg 2 miniature_pinscher 0.817066 True redbone 5.970650e-02 True Irish_terrier 3.419520e-02 True
1626 804026241225523202 https://pbs.twimg.com/media/Cyh5mQTW8AQpB6K.jpg 1 web_site 0.492709 False envelope 5.056580e-02 False guillotine 1.529690e-02 False
1627 804413760345620481 https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg 1 chow 0.090341 True binoculars 8.349880e-02 False Irish_setter 7.745560e-02 True
1628 804738756058218496 https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg 1 Tibetan_mastiff 0.915790 True German_shepherd 6.247970e-02 True Leonberg 8.297490e-03 True
1629 805207613751304193 https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg 1 Pembroke 0.244705 True Rhodesian_ridgeback 1.804610e-01 True Cardigan 9.466370e-02 True
1630 805487436403003392 https://pbs.twimg.com/media/Cy2qiTxXcAAtQBH.jpg 3 shield 0.587830 False barrel 9.017990e-02 False sundial 6.919860e-02 False
1631 805520635690676224 https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg 1 malinois 0.643147 True German_shepherd 1.866420e-01 True Border_terrier 1.093450e-01 True
1632 805826884734976000 https://pbs.twimg.com/ext_tw_video_thumb/805826823359631360/pu/img/yr_fF0TZCR-B70p2.jpg 1 Siberian_husky 0.248926 True American_Staffordshire_terrier 9.831330e-02 True Eskimo_dog 8.018850e-02 True
1633 805932879469572096 https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg 1 Norwegian_elkhound 0.657967 True keeshond 3.191360e-01 True Leonberg 7.946740e-03 True
1634 805958939288408065 https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg 1 Irish_setter 0.574557 True golden_retriever 3.392510e-01 True seat_belt 4.610820e-02 False
1635 806219024703037440 https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg 1 chow 0.835102 True Pomeranian 4.078290e-02 True Eskimo_dog 2.127450e-02 True
1636 806242860592926720 https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg 2 Cardigan 0.593858 True Shetland_sheepdog 1.306110e-01 True Pembroke 1.008420e-01 True
1637 806542213899489280 https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg 1 vizsla 0.938617 True Brittany_spaniel 3.673890e-02 True Chesapeake_Bay_retriever 3.971490e-03 True
1638 806629075125202948 https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True
1639 807010152071229440 https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg 1 golden_retriever 0.610807 True Irish_setter 2.136420e-01 True Welsh_springer_spaniel 3.188660e-02 True
1640 807059379405148160 https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg 1 seat_belt 0.474292 False golden_retriever 1.713930e-01 True Labrador_retriever 1.105920e-01 True
1641 807106840509214720 https://pbs.twimg.com/ext_tw_video_thumb/807106774843039744/pu/img/8XZg1xW35Xp2J6JW.jpg 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True
1642 807621403335917568 https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg 3 golden_retriever 0.873233 True cocker_spaniel 3.369330e-02 True chow 2.040840e-02 True
1643 808001312164028416 https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg 1 Labrador_retriever 0.730959 True Staffordshire_bullterrier 1.307260e-01 True American_Staffordshire_terrier 2.885260e-02 True
1644 808106460588765185 https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg 1 golden_retriever 0.426183 True Labrador_retriever 2.574470e-01 True Great_Pyrenees 1.264820e-01 True
1645 808134635716833280 https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg 1 cocker_spaniel 0.740220 True Dandie_Dinmont 6.160450e-02 True English_setter 4.133140e-02 True
1646 808501579447930884 https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg 2 Airedale 0.454239 True cocker_spaniel 2.193230e-01 True Irish_terrier 9.319300e-02 True
1647 808733504066486276 https://pbs.twimg.com/media/Czky0v9VIAEXRkd.jpg 1 seat_belt 0.779137 False toy_poodle 3.692710e-02 True golden_retriever 1.697250e-02 True
1648 808838249661788160 https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg 1 Rottweiler 0.369530 True miniature_pinscher 1.948670e-01 True kelpie 1.601040e-01 True
1649 809084759137812480 https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg 1 vizsla 0.911412 True bloodhound 1.713390e-02 True Labrador_retriever 1.176100e-02 True
1650 809220051211603969 https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg 1 Pomeranian 0.819511 True Samoyed 1.412410e-01 True Pembroke 1.345520e-02 True
1651 809448704142938112 https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg 1 Greater_Swiss_Mountain_dog 0.375415 True Cardigan 1.343170e-01 True English_springer 7.369710e-02 True
1652 809808892968534016 https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg 1 Labrador_retriever 0.861651 True golden_retriever 4.446180e-02 True Staffordshire_bullterrier 1.649670e-02 True
1653 809920764300447744 https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg 1 Norwich_terrier 0.397163 True toy_poodle 2.745400e-01 True miniature_poodle 1.346670e-01 True
1654 810254108431155201 https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg 1 Staffordshire_bullterrier 0.292556 True American_Staffordshire_terrier 2.612330e-01 True Border_terrier 6.237540e-02 True
1655 810284430598270976 https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg 1 malamute 0.620768 True Eskimo_dog 1.583950e-01 True Tibetan_mastiff 2.896170e-02 True
1656 810657578271330305 https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg 1 malamute 0.753521 True Siberian_husky 1.661510e-01 True Eskimo_dog 6.981080e-02 True
1657 810896069567610880 https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg 1 flat-coated_retriever 0.820804 True Labrador_retriever 8.231820e-02 True curly-coated_retriever 6.746050e-02 True
1658 810984652412424192 https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg 1 golden_retriever 0.871342 True Tibetan_mastiff 3.670770e-02 True Labrador_retriever 2.582320e-02 True
1659 811386762094317568 https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg 1 Pembroke 0.804177 True Cardigan 1.898900e-01 True beagle 1.964750e-03 True
1660 811627233043480576 https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg 1 beagle 0.396280 True Pembroke 4.956190e-02 True wire-haired_fox_terrier 4.634920e-02 True
1661 811744202451197953 https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg 1 Pekinese 0.386082 True Labrador_retriever 2.028620e-01 True golden_retriever 1.704870e-01 True
1662 811985624773361665 https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg 1 Staffordshire_bullterrier 0.610573 True French_bulldog 1.599350e-01 True doormat 5.867210e-02 False
1663 812372279581671427 https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg 2 golden_retriever 0.784873 True cocker_spaniel 8.778810e-02 True Labrador_retriever 8.327470e-02 True
1664 812466873996607488 https://pbs.twimg.com/media/C0Z2T_GWgAAxbL9.jpg 1 bath_towel 0.099804 False pillow 9.231810e-02 False Great_Dane 7.820550e-02 True
1665 812503143955202048 https://pbs.twimg.com/media/C0aXTLqXEAADxBi.jpg 2 loupe 0.546856 False web_site 3.452980e-01 False bubble 1.052790e-02 False
1666 812709060537683968 https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg 1 Irish_setter 0.326873 True golden_retriever 1.826100e-01 True Leonberg 1.569120e-01 True
1667 812781120811126785 https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg 1 bull_mastiff 0.989316 True boxer 7.042960e-03 True French_bulldog 1.739610e-03 True
1668 813051746834595840 https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg 1 golden_retriever 0.914804 True Labrador_retriever 8.355000e-02 True kuvasz 4.532240e-04 True
1669 813066809284972545 https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg 1 toy_terrier 0.776400 True Pembroke 1.150340e-01 True basenji 4.887300e-02 True
1670 813081950185472002 https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg 2 Doberman 0.909951 True kelpie 4.264940e-02 True miniature_pinscher 2.300410e-02 True
1671 813096984823349248 https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg 1 Great_Dane 0.128056 True Boston_bull 1.170030e-01 True kelpie 8.696430e-02 True
1672 813112105746448384 https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg 1 dingo 0.287369 False Pembroke 1.406820e-01 True basenji 9.081890e-02 True
1673 813127251579564032 https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg 1 Norwegian_elkhound 0.432416 True whippet 3.742230e-01 True Siberian_husky 3.246260e-02 True
1674 813142292504645637 https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg 3 beagle 0.848735 True Ibizan_hound 4.460250e-02 True Italian_greyhound 1.861080e-02 True
1675 813157409116065792 https://pbs.twimg.com/media/C0jqVVOXUAAGJ0G.jpg 2 Siamese_cat 0.843911 False Pembroke 7.056710e-02 True Cardigan 4.191600e-02 True
1676 813172488309972993 https://pbs.twimg.com/media/C0j4EESUsAABtMq.jpg 1 doormat 0.954844 False golden_retriever 2.619310e-02 True cocker_spaniel 4.385980e-03 True
1677 813187593374461952 https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg 1 golden_retriever 0.888181 True Labrador_retriever 4.231190e-02 True Saluki 9.701730e-03 True
1678 813202720496779264 https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg 1 cocker_spaniel 0.701852 True golden_retriever 1.203450e-01 True Labrador_retriever 3.632020e-02 True
1679 813217897535406080 https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg 1 Samoyed 0.905972 True Pomeranian 4.803830e-02 True West_Highland_white_terrier 3.566710e-02 True
1680 813800681631023104 https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg 1 malamute 0.501159 True Siberian_husky 2.287920e-01 True Eskimo_dog 2.003880e-01 True
1681 813812741911748608 https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg 1 French_bulldog 0.709146 True Boston_bull 2.476210e-01 True boxer 1.885510e-02 True
1682 813910438903693312 https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg 1 Siberian_husky 0.699355 True Eskimo_dog 2.564330e-01 True Norwegian_elkhound 1.318880e-02 True
1683 813944609378369540 https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg 1 Labrador_retriever 0.427742 True Great_Dane 1.905030e-01 True curly-coated_retriever 1.464270e-01 True
1684 814153002265309185 https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg 1 golden_retriever 0.490068 True Labrador_retriever 2.919560e-01 True chow 7.247470e-02 True
1685 814530161257443328 https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg 1 miniature_poodle 0.626913 True toy_poodle 2.655820e-01 True soft-coated_wheaten_terrier 4.161420e-02 True
1686 814638523311648768 https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg 2 golden_retriever 0.650814 True kuvasz 5.328100e-02 True cocker_spaniel 3.543960e-02 True
1687 814986499976527872 https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg 1 dalmatian 0.999828 True boxer 6.780610e-05 True American_Staffordshire_terrier 3.424360e-05 True
1688 815390420867969024 https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg 1 restaurant 0.279846 False toyshop 9.142940e-02 False paper_towel 4.614740e-02 False
1689 815639385530101762 https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg 1 German_shepherd 0.817953 True Norwegian_elkhound 1.400070e-01 True malinois 2.482090e-02 True
1690 815736392542261248 https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg 3 Border_collie 0.548907 True Cardigan 1.785230e-01 True collie 1.463510e-01 True
1691 815966073409433600 https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg 1 Tibetan_mastiff 0.506312 True Tibetan_terrier 2.956900e-01 True otterhound 3.625070e-02 True
1692 815990720817401858 https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg 1 Chihuahua 0.428756 True miniature_pinscher 1.039120e-01 True Staffordshire_bullterrier 8.895870e-02 True
1693 816014286006976512 https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg 1 English_setter 0.677408 True Border_collie 5.272400e-02 True cocker_spaniel 4.857190e-02 True
1694 816091915477250048 https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg 3 Pomeranian 0.967345 True Samoyed 7.397480e-03 True papillon 6.016500e-03 True
1695 816336735214911488 https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg 1 Labrador_retriever 0.919330 True kuvasz 4.947950e-02 True golden_retriever 1.193420e-02 True
1696 816450570814898180 https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg 1 web_site 0.352857 False envelope 6.010720e-02 False nail 3.129090e-02 False
1697 816697700272001025 https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg 1 Chihuahua 0.756992 True Pomeranian 5.284950e-02 True Maltese_dog 4.760780e-02 True
1698 816816676327063552 https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg 1 malamute 0.668164 True Pembroke 1.050330e-01 True Siberian_husky 7.787500e-02 True
1699 816829038950027264 https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg 1 dishwasher 0.700466 False golden_retriever 2.457730e-01 True chow 3.901170e-02 True
1700 817056546584727552 https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg 1 kelpie 0.864415 True French_bulldog 9.745560e-02 True German_shepherd 8.525870e-03 True
1701 817120970343411712 https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg 1 Saluki 0.568809 True Afghan_hound 2.293520e-01 True golden_retriever 1.571300e-01 True
1702 817171292965273600 https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg 1 golden_retriever 0.295483 True Irish_setter 1.444310e-01 True Chesapeake_Bay_retriever 7.787900e-02 True
1703 817181837579653120 https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg 1 Tibetan_mastiff 0.506312 True Tibetan_terrier 2.956900e-01 True otterhound 3.625070e-02 True
1704 817415592588222464 https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg 1 Doberman 0.806163 True black-and-tan_coonhound 9.738590e-02 True miniature_pinscher 8.599280e-02 True
1705 817423860136083457 https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True
1706 817536400337801217 https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg 2 pug 0.971358 True French_bulldog 2.851850e-02 True Boston_bull 8.596980e-05 True
1707 817777686764523521 https://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg 1 curly-coated_retriever 0.733256 True flat-coated_retriever 2.141450e-01 True Irish_water_spaniel 2.976900e-02 True
1708 817827839487737858 https://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg 1 cocker_spaniel 0.387608 True golden_retriever 2.648440e-01 True Pekinese 1.221230e-01 True
1709 818145370475810820 https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg 1 golden_retriever 0.621931 True Labrador_retriever 3.649970e-01 True redbone 3.971480e-03 True
1710 818259473185828864 https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg 1 miniature_schnauzer 0.367368 True toy_poodle 1.124790e-01 True standard_schnauzer 9.543400e-02 True
1711 818536468981415936 https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg 1 swing 0.999403 False Welsh_springer_spaniel 6.229490e-05 True bow 3.046190e-05 False
1712 818588835076603904 https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg 1 Norwegian_elkhound 0.372202 True Chesapeake_Bay_retriever 1.371870e-01 True malamute 7.143620e-02 True
1713 818614493328580609 https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg 4 Chihuahua 0.450722 True Border_terrier 2.041770e-01 True beagle 9.277400e-02 True
1714 818627210458333184 https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg 1 Labrador_retriever 0.384188 True beagle 2.559170e-01 True grocery_store 7.979950e-02 False
1715 819004803107983360 https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg 1 standard_poodle 0.351308 True toy_poodle 2.719290e-01 True Tibetan_terrier 9.475920e-02 True
1716 819006400881917954 https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg 4 prison 0.907083 False palace 2.008910e-02 False umbrella 7.849540e-03 False
1717 819015331746349057 https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg 4 prison 0.907083 False palace 2.008910e-02 False umbrella 7.849540e-03 False
1718 819015337530290176 https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg 1 standard_poodle 0.351308 True toy_poodle 2.719290e-01 True Tibetan_terrier 9.475920e-02 True
1719 819227688460238848 https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg 1 Border_terrier 0.482452 True German_shepherd 1.810820e-01 True Norwegian_elkhound 6.525660e-02 True
1720 819347104292290561 https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg 3 Rottweiler 0.909106 True black-and-tan_coonhound 4.411980e-02 True Doberman 3.183490e-02 True
1721 819588359383371776 https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg 1 Cardigan 0.547935 True basenji 1.164420e-01 True Shetland_sheepdog 1.016810e-01 True
1722 819711362133872643 https://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg 2 acorn_squash 0.848704 False toilet_seat 4.434840e-02 False toy_poodle 2.200940e-02 True
1723 819924195358416896 https://pbs.twimg.com/ext_tw_video_thumb/819924138965999617/pu/img/6OIToyT9eLESHXLU.jpg 1 bathtub 0.100896 False shower_curtain 9.186640e-02 False tub 4.917630e-02 False
1724 819952236453363712 https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg 1 American_Staffordshire_terrier 0.925505 True Staffordshire_bullterrier 3.622150e-02 True Italian_greyhound 2.041190e-02 True
1725 820078625395449857 https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg 3 school_bus 0.999833 False cab 1.596210e-04 False crane 1.799800e-06 False
1726 820314633777061888 https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg 2 Gordon_setter 0.940724 True black-and-tan_coonhound 4.204120e-02 True Rottweiler 9.417430e-03 True
1727 820446719150292993 https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg 3 golden_retriever 0.938048 True kuvasz 2.511950e-02 True Labrador_retriever 2.297730e-02 True
1728 820690176645140481 https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg 2 West_Highland_white_terrier 0.872064 True kuvasz 5.952590e-02 True Samoyed 3.739960e-02 True
1729 820749716845686786 https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg 2 golden_retriever 0.838012 True Pekinese 5.673310e-02 True Labrador_retriever 2.394360e-02 True
1730 821044531881721856 https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg 1 Old_English_sheepdog 0.148020 True Airedale 1.335340e-01 True Tibetan_mastiff 1.209030e-01 True
1731 821107785811234820 https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg 1 Pomeranian 0.856590 True papillon 3.853650e-02 True Yorkshire_terrier 3.314580e-02 True
1732 821149554670182400 https://pbs.twimg.com/ext_tw_video_thumb/821149477142556673/pu/img/88_DV098c60pC5AA.jpg 1 German_shepherd 0.515933 True malinois 2.036510e-01 True Irish_setter 9.105510e-02 True
1733 821407182352777218 https://pbs.twimg.com/ext_tw_video_thumb/821407155391725568/pu/img/AJC07gFJDDBuwNTD.jpg 1 Irish_setter 0.505496 True vizsla 1.687470e-01 True Chesapeake_Bay_retriever 1.113110e-01 True
1734 821522889702862852 https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg 1 Doberman 0.763539 True black-and-tan_coonhound 1.366020e-01 True miniature_pinscher 8.765390e-02 True
1735 821765923262631936 https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg 1 golden_retriever 0.980071 True Labrador_retriever 8.757510e-03 True Saluki 1.805950e-03 True
1736 821813639212650496 https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg 1 Saint_Bernard 0.995143 True Cardigan 3.043590e-03 True English_springer 1.049550e-03 True
1737 821886076407029760 https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg 1 golden_retriever 0.266238 True cocker_spaniel 2.233250e-01 True Irish_setter 1.516310e-01 True
1738 822244816520155136 https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg 1 Samoyed 0.585441 True Pomeranian 1.936540e-01 True Arctic_fox 7.164760e-02 False
1739 822462944365645825 https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg 3 Pomeranian 0.960199 True Samoyed 2.305630e-02 True Maltese_dog 8.944880e-03 True
1740 822489057087389700 https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 1 Samoyed 0.416769 True malamute 2.527060e-01 True kuvasz 1.570280e-01 True
1741 822610361945911296 https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg 1 cocker_spaniel 0.664487 True Norfolk_terrier 7.508900e-02 True Norwich_terrier 5.964390e-02 True
1742 822647212903690241 https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 1 Samoyed 0.416769 True malamute 2.527060e-01 True kuvasz 1.570280e-01 True
1743 822859134160621569 https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg 1 malinois 0.332897 True Chihuahua 1.041160e-01 True Staffordshire_bullterrier 4.774500e-02 True
1744 822872901745569793 https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg 1 Lakeland_terrier 0.196015 True Labrador_retriever 1.603290e-01 True Irish_terrier 6.912620e-02 True
1745 822975315408461824 https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg 1 bathtub 0.331098 False tub 2.488600e-01 False Pembroke 2.331620e-01 True
1746 823269594223824897 https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg 1 Samoyed 0.585441 True Pomeranian 1.936540e-01 True Arctic_fox 7.164760e-02 False
1747 823322678127919110 https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg 2 cowboy_boot 0.990253 False Chihuahua 1.836350e-03 True papillon 1.273900e-03 True
1748 823581115634085888 https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg 1 dingo 0.280949 False German_shepherd 1.940440e-01 True Pembroke 1.200510e-01 True
1749 823699002998870016 https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg 1 cairn 0.203999 True snorkel 1.718930e-01 False Norfolk_terrier 1.075430e-01 True
1750 823939628516474880 https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg 1 schipperke 0.234076 True curly-coated_retriever 1.930930e-01 True Labrador_retriever 9.519660e-02 True
1751 824297048279236611 https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg 2 teddy 0.588230 False jigsaw_puzzle 2.890960e-02 False doormat 2.225070e-02 False
1752 824325613288833024 https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg 1 Pembroke 0.990793 True Cardigan 8.919390e-03 True basenji 2.622640e-04 True
1753 824663926340194305 https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg 1 English_setter 0.526488 True golden_retriever 4.028150e-01 True Irish_setter 3.441780e-02 True
1754 824775126675836928 https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg 1 Border_terrier 0.610499 True malinois 9.029120e-02 True Airedale 6.862470e-02 True
1755 824796380199809024 https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg 2 gas_pump 0.676439 False harvester 4.999530e-02 False swing 4.465960e-02 False
1756 825026590719483904 https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg 2 Eskimo_dog 0.524454 True Siberian_husky 4.676780e-01 True malamute 4.975840e-03 True
1757 825147591692263424 https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg 1 Pekinese 0.354823 True Pomeranian 2.453900e-01 True toy_poodle 1.365450e-01 True
1758 825535076884762624 https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg 1 Rottweiler 0.681495 True Tibetan_mastiff 1.479400e-01 True black-and-tan_coonhound 2.452520e-02 True
1759 825829644528148480 https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg 2 Great_Pyrenees 0.853407 True golden_retriever 5.353130e-02 True English_setter 4.582990e-02 True
1760 825876512159186944 https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg 1 shopping_cart 0.995941 False shopping_basket 4.056970e-03 False mousetrap 8.832830e-07 False
1761 826115272272650244 https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg 1 tennis_ball 0.997071 False golden_retriever 2.330850e-03 True kuvasz 2.834720e-04 True
1762 826204788643753985 https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg 2 Labrador_retriever 0.782058 True golden_retriever 1.565810e-01 True soft-coated_wheaten_terrier 7.275120e-03 True
1763 826240494070030336 https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg 1 French_bulldog 0.903048 True pug 9.624210e-02 True Boston_bull 2.343640e-04 True
1764 826476773533745153 https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg 1 German_shepherd 0.741860 True Tibetan_mastiff 1.228120e-01 True kelpie 1.004600e-01 True
1765 826598365270007810 https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg 1 French_bulldog 0.628119 True Siamese_cat 1.173970e-01 False cougar 8.276490e-02 False
1766 826848821049180160 https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg 4 Great_Pyrenees 0.858764 True golden_retriever 2.352570e-02 True Pekinese 1.710390e-02 True
1767 826958653328592898 https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False
1768 827199976799354881 https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg 4 Great_Dane 0.869681 True American_Staffordshire_terrier 2.665820e-02 True boxer 1.986610e-02 True
1769 827324948884643840 https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg 1 golden_retriever 0.352486 True toy_poodle 1.788840e-01 True Labrador_retriever 8.416440e-02 True
1770 827600520311402496 https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg 1 Pembroke 0.325638 True golden_retriever 3.172350e-01 True Labrador_retriever 1.160870e-01 True
1771 827653905312006145 https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg 1 collie 0.285555 True Border_collie 2.173060e-01 True Saint_Bernard 1.432450e-01 True
1772 827933404142436356 https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg 2 German_shepherd 0.806115 True Tibetan_mastiff 1.048310e-01 True kelpie 3.814820e-02 True
1773 828011680017821696 https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg 1 American_Staffordshire_terrier 0.936662 True Staffordshire_bullterrier 3.299910e-02 True bull_mastiff 1.718340e-02 True
1774 828046555563323392 https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg 3 patio 0.272972 False window_screen 1.312950e-01 False boathouse 4.639250e-02 False
1775 828372645993398273 https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg 1 malamute 0.663047 True Eskimo_dog 2.077790e-01 True Tibetan_mastiff 4.094880e-02 True
1776 828376505180889089 https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg 1 American_Staffordshire_terrier 0.523086 True Staffordshire_bullterrier 1.861680e-01 True Chihuahua 4.208940e-02 True
1777 828381636999917570 https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg 1 Bedlington_terrier 0.392535 True Labrador_retriever 8.902170e-02 True clumber 8.179980e-02 True
1778 828408677031882754 https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg 1 Weimaraner 0.133033 True Chesapeake_Bay_retriever 9.222700e-02 True American_Staffordshire_terrier 6.509450e-02 True
1779 828409743546925057 https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg 1 teddy 0.908457 False toy_poodle 1.803980e-02 True standard_poodle 1.266710e-02 True
1780 828650029636317184 https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg 1 golden_retriever 0.649209 True Chesapeake_Bay_retriever 1.985600e-01 True vizsla 5.619990e-02 True
1781 828708714936930305 https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg 1 hippopotamus 0.942911 False Mexican_hairless 8.388370e-03 True ice_lolly 6.206470e-03 False
1782 828770345708580865 https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg 1 seat_belt 0.765979 False Chesapeake_Bay_retriever 3.389860e-02 True polecat 2.725160e-02 False
1783 829011960981237760 https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg 2 boxer 0.312221 True dalmatian 2.440400e-01 True conch 1.302730e-01 False
1784 829141528400556032 https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg 2 golden_retriever 0.573140 True cocker_spaniel 1.111590e-01 True gibbon 9.412690e-02 False
1785 829374341691346946 https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True
1786 829449946868879360 https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg 1 Labrador_retriever 0.315163 True golden_retriever 1.532100e-01 True Pekinese 1.327910e-01 True
1787 829501995190984704 https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg 1 French_bulldog 0.950851 True Pekinese 1.519960e-02 True pug 1.109360e-02 True
1788 829861396166877184 https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg 1 Border_terrier 0.394486 True Staffordshire_bullterrier 3.765740e-01 True American_Staffordshire_terrier 3.129160e-02 True
1789 829878982036299777 https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False
1790 830097400375152640 https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg 4 toy_poodle 0.442713 True Pomeranian 1.420730e-01 True Pekinese 1.257450e-01 True
1791 830583320585068544 https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True
1792 830956169170665475 https://pbs.twimg.com/ext_tw_video_thumb/830956118893543424/pu/img/t2G0raF7pDPRMAH5.jpg 1 kuvasz 0.451516 True golden_retriever 3.171960e-01 True English_setter 1.327590e-01 True
1793 831262627380748289 https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg 1 cocker_spaniel 0.263323 True Brittany_spaniel 2.005500e-01 True doormat 1.934140e-01 False
1794 831309418084069378 https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg 1 Doberman 0.369389 True kelpie 1.324490e-01 True Labrador_retriever 7.472730e-02 True
1795 831315979191906304 https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg 4 briard 0.982755 True soft-coated_wheaten_terrier 9.084350e-03 True Bouvier_des_Flandres 4.692800e-03 True
1796 831322785565769729 https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg 1 Old_English_sheepdog 0.999715 True Tibetan_terrier 4.629670e-05 True guinea_pig 4.118430e-05 False
1797 831552930092285952 https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg 1 Chihuahua 0.257415 True Pembroke 1.614420e-01 True French_bulldog 9.214290e-02 True
1798 831650051525054464 https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg 1 Eskimo_dog 0.530416 True Siberian_husky 1.803350e-01 True Norwegian_elkhound 1.043140e-01 True
1799 831670449226514432 https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg 1 Pembroke 0.624802 True Cardigan 3.628610e-01 True Appenzeller 3.926210e-03 True
1800 831911600680497154 https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg 4 bloodhound 0.777562 True Great_Dane 4.741760e-02 True Leonberg 1.794310e-02 True
1801 831939777352105988 https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg 1 Pomeranian 0.153862 True marmot 9.123390e-02 False grey_fox 9.064410e-02 False
1802 832032802820481025 https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg 1 whippet 0.601712 True Ibizan_hound 1.526620e-01 True Italian_greyhound 1.350550e-01 True
1803 832040443403784192 https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg 1 miniature_pinscher 0.796313 True Chihuahua 1.554130e-01 True Staffordshire_bullterrier 3.094330e-02 True
1804 832215726631055365 https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg 1 Afghan_hound 0.274637 True borzoi 1.422040e-01 True doormat 1.096770e-01 False
1805 832273440279240704 https://pbs.twimg.com/ext_tw_video_thumb/832273373149413377/pu/img/qOqxM0b48fEarmq6.jpg 1 Pembroke 0.134081 True ice_bear 5.192780e-02 False pug 4.431090e-02 True
1806 832369877331693569 https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg 1 kelpie 0.504690 True German_short-haired_pointer 1.052080e-01 True Staffordshire_bullterrier 5.433850e-02 True
1807 832397543355072512 https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg 1 Pekinese 0.988916 True Brabancon_griffon 1.676800e-03 True Siamese_cat 1.125890e-03 False
1808 832636094638288896 https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg 1 Eskimo_dog 0.525032 True Siberian_husky 2.522380e-01 True malamute 2.168390e-01 True
1809 832757312314028032 https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg 2 Cardigan 0.160888 True Staffordshire_bullterrier 1.594410e-01 True Boston_bull 1.543680e-01 True
1810 832769181346996225 https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg 1 jersey 0.895698 False sweatshirt 8.908540e-02 False poncho 2.975220e-03 False
1811 832998151111966721 https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg 1 boxer 0.539036 True French_bulldog 3.176170e-01 True bull_mastiff 9.392850e-02 True
1812 833124694597443584 https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg 3 Cardigan 0.710523 True kelpie 1.061020e-01 True shopping_cart 5.547550e-02 False
1813 833479644947025920 https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg 3 golden_retriever 0.727039 True cocker_spaniel 7.113980e-02 True Tibetan_mastiff 4.869420e-02 True
1814 833722901757046785 https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg 1 West_Highland_white_terrier 0.918144 True Maltese_dog 2.572070e-02 True Lakeland_terrier 2.021110e-02 True
1815 833826103416520705 https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg 1 Chihuahua 0.438054 True kelpie 1.497060e-01 True Pembroke 9.648050e-02 True
1816 833863086058651648 https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg 1 kuvasz 0.494969 True Great_Pyrenees 3.126320e-01 True golden_retriever 1.417360e-01 True
1817 834086379323871233 https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg 1 bath_towel 0.736759 False sleeping_bag 6.295910e-02 False Labrador_retriever 4.526270e-02 True
1818 834167344700198914 https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg 1 ox 0.991682 False bison 5.334520e-03 False water_buffalo 1.130250e-03 False
1819 834209720923721728 https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg 1 golden_retriever 0.754799 True Pekinese 1.978610e-01 True Labrador_retriever 8.654040e-03 True
1820 834458053273591808 https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg 1 Rhodesian_ridgeback 0.468619 True whippet 1.775310e-01 True redbone 1.065520e-01 True
1821 834574053763584002 https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg 1 toilet_tissue 0.262936 False golden_retriever 2.265640e-01 True bathtub 7.887900e-02 False
1822 834786237630337024 https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg 1 Border_terrier 0.156276 True Norwegian_elkhound 1.259120e-01 True Boston_bull 9.662390e-02 True
1823 834931633769889797 https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg 1 ice_bear 0.330573 False soft-coated_wheaten_terrier 1.964760e-01 True Irish_terrier 7.309650e-02 True
1824 835152434251116546 https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 3 swing 0.967066 False American_Staffordshire_terrier 1.273090e-02 True Staffordshire_bullterrier 7.039220e-03 True
1825 835172783151792128 https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 2 Border_collie 0.663138 True collie 1.524940e-01 True Cardigan 3.547060e-02 True
1826 835264098648616962 https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 2 hyena 0.736871 False Chesapeake_Bay_retriever 8.750330e-02 True meerkat 4.205780e-02 False
1827 835297930240217089 https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 Rottweiler 0.341276 True Border_terrier 3.362200e-01 True Gordon_setter 4.544830e-02 True
1828 835574547218894849 https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 Staffordshire_bullterrier 0.610655 True muzzle 1.321380e-01 False American_Staffordshire_terrier 1.095440e-01 True
1829 836001077879255040 https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 4 Samoyed 0.963558 True white_wolf 1.984760e-02 False malamute 5.904340e-03 True
1830 836260088725786625 https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 borzoi 0.564688 True ice_bear 7.826750e-02 False Pembroke 5.791620e-02 True
1831 836380477523124226 https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 wooden_spoon 0.082489 False sliding_door 6.101650e-02 False grand_piano 5.508610e-02 False
1832 836677758902222849 https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 2 leopard 0.797410 False jaguar 9.548660e-02 False snow_leopard 7.969410e-02 False
1833 836753516572119041 https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 mortarboard 0.936882 False academic_gown 2.081540e-02 False schipperke 1.156350e-02 True
1834 836989968035819520 https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 shopping_cart 0.572422 False shopping_basket 4.140020e-01 False toy_poodle 5.887300e-03 True
1835 837012587749474308 https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 toilet_tissue 0.186387 False cowboy_hat 1.585550e-01 False sombrero 1.494700e-01 False
1836 837110210464448512 https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 Siberian_husky 0.767696 True Eskimo_dog 2.170790e-01 True malamute 1.165680e-02 True
1837 837366284874571778 https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 American_Staffordshire_terrier 0.660085 True Staffordshire_bullterrier 3.349470e-01 True dalmatian 2.697160e-03 True
1838 837471256429613056 https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 Norwegian_elkhound 0.976255 True keeshond 1.399020e-02 True seat_belt 2.110540e-03 False
1839 837482249356513284 https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 2 birdhouse 0.541196 False can_opener 1.210940e-01 False carton 5.613670e-02 False
1840 837820167694528512 https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 golden_retriever 0.887625 True Labrador_retriever 6.871750e-02 True kuvasz 3.038680e-02 True
1841 838083903487373313 https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 2 chow 0.800975 True seat_belt 1.641330e-01 False Pomeranian 1.798100e-02 True
1842 838476387338051585 https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 3 Great_Pyrenees 0.997692 True kuvasz 1.000640e-03 True Newfoundland 4.045560e-04 True
1843 838561493054533637 https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 kelpie 0.216562 True doormat 1.399940e-01 False dalmatian 1.328200e-01 True
1844 838916489579200512 https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 2 web_site 0.993651 False monitor 1.405900e-03 False envelope 1.093090e-03 False
1845 838921590096166913 https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 Border_terrier 0.664538 True Brabancon_griffon 1.704510e-01 True Yorkshire_terrier 8.782360e-02 True
1846 839239871831150596 https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 3 Leonberg 0.927021 True Newfoundland 5.000910e-02 True Saint_Bernard 1.072780e-02 True
1847 839290600511926273 https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 web_site 0.670892 False monitor 1.015650e-01 False screen 7.530610e-02 False
1848 839549326359670784 https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 swing 0.393527 False Norwich_terrier 5.248000e-02 True Pembroke 4.990060e-02 True
1849 839990271299457024 https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 2 Staffordshire_bullterrier 0.604938 True American_Staffordshire_terrier 3.115400e-01 True Boston_bull 3.715910e-02 True
1850 840268004936019968 https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 3 Chesapeake_Bay_retriever 0.863987 True Labrador_retriever 5.263230e-02 True kelpie 3.257360e-02 True
1851 840370681858686976 https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 teapot 0.981819 False cup 1.402580e-02 False coffeepot 2.420540e-03 False
1852 840632337062862849 https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 golden_retriever 0.711148 True cocker_spaniel 1.579290e-01 True Labrador_retriever 5.958190e-02 True
1853 840696689258311684 https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 web_site 0.841768 False rule 7.087310e-03 False envelope 6.820300e-03 False
1854 841077006473256960 https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 Brittany_spaniel 0.962985 True Blenheim_spaniel 1.482000e-02 True clumber 9.557110e-03 True
1855 841314665196081154 https://pbs.twimg.com/ext_tw_video_thumb/841311812641533952/pu/img/sBUGt8u76n9azPWI.jpg 1 Afghan_hound 0.903712 True Saluki 3.521500e-02 True bloodhound 2.656550e-02 True
1856 841439858740625411 https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 3 military_uniform 0.853684 False Labrador_retriever 4.819990e-02 True groenendael 1.539440e-02 True
1857 841680585030541313 https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 Chihuahua 0.547401 True bow_tie 1.983610e-01 False Pembroke 5.849250e-02 True
1858 841833993020538882 https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True
1859 842115215311396866 https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 chow 0.293493 True Newfoundland 1.813360e-01 True schipperke 1.251520e-01 True
1860 842163532590374912 https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 2 French_bulldog 0.891227 True soccer_ball 2.281100e-02 False bull_mastiff 1.285200e-02 True
1861 842535590457499648 https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 Pembroke 0.685084 True Cardigan 3.146080e-01 True basenji 1.598240e-04 True
1862 842765311967449089 https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 tub 0.665238 False bucket 1.051660e-01 False Labrador_retriever 2.933990e-02 True
1863 842846295480000512 https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 Labrador_retriever 0.461076 True golden_retriever 1.549460e-01 True Chihuahua 1.102490e-01 True
1864 842892208864923648 https://pbs.twimg.com/ext_tw_video_thumb/807106774843039744/pu/img/8XZg1xW35Xp2J6JW.jpg 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True
1865 843235543001513987 https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 Pembroke 0.958452 True Cardigan 2.376990e-02 True Chihuahua 5.269360e-03 True
1866 843604394117681152 https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 Labrador_retriever 0.430583 True golden_retriever 2.635810e-01 True Great_Pyrenees 1.793850e-01 True
1867 843856843873095681 https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 Labrador_retriever 0.922540 True golden_retriever 7.435780e-02 True Great_Pyrenees 2.324950e-03 True
1868 844223788422217728 https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 Labrador_retriever 0.719510 True Chesapeake_Bay_retriever 1.220190e-01 True Newfoundland 3.882760e-02 True
1869 844580511645339650 https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 washer 0.903064 False dishwasher 3.248900e-02 False printer 1.645620e-02 False
1870 844704788403113984 https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 Labrador_retriever 0.980213 True golden_retriever 7.011670e-03 True beagle 3.146970e-03 True
1871 844973813909606400 https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 Labrador_retriever 0.742421 True golden_retriever 1.952180e-01 True Chihuahua 1.732010e-02 True
1872 844979544864018432 https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 3 tennis_ball 0.999281 False racket 3.700800e-04 False Shetland_sheepdog 1.320680e-04 True
1873 845306882940190720 https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 Irish_water_spaniel 0.567475 True Labrador_retriever 1.694960e-01 True curly-coated_retriever 1.015180e-01 True
1874 845397057150107648 https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 Dandie_Dinmont 0.394404 True Maltese_dog 1.865370e-01 True West_Highland_white_terrier 1.819850e-01 True
1875 845677943972139009 https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 chow 0.808681 True groenendael 1.231410e-01 True Newfoundland 2.214320e-02 True
1876 845812042753855489 https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 Samoyed 0.979803 True chow 1.592260e-02 True white_wolf 1.302790e-03 False
1877 846042936437604353 https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 golden_retriever 0.961110 True Labrador_retriever 1.669520e-02 True Tibetan_mastiff 9.081530e-03 True
1878 846153765933735936 https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 giant_schnauzer 0.346468 True flat-coated_retriever 2.184510e-01 True Labrador_retriever 1.080200e-01 True
1879 846514051647705089 https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 2 golden_retriever 0.650003 True Leonberg 6.519920e-02 True Norfolk_terrier 5.295530e-02 True
1880 846874817362120707 https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland_sheepdog 0.450539 True papillon 1.879280e-01 True collie 1.400680e-01 True
1881 847116187444137987 https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 white_wolf 0.128935 False American_Staffordshire_terrier 1.134340e-01 True dingo 8.123140e-02 False
1882 847157206088847362 https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 2 Staffordshire_bullterrier 0.219609 True American_Staffordshire_terrier 1.786710e-01 True pug 1.232710e-01 True
1883 847251039262605312 https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 Airedale 0.495380 True Irish_terrier 3.164560e-01 True Lakeland_terrier 1.585330e-01 True
1884 847606175596138505 https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 Cardigan 0.413688 True Boston_bull 3.818360e-01 True doormat 6.586780e-02 False
1885 847842811428974592 https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 Bernese_mountain_dog 0.951337 True Greater_Swiss_Mountain_dog 1.684910e-02 True Appenzeller 1.084920e-02 True
1886 847962785489326080 https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 sea_lion 0.882654 False mink 6.688020e-02 False otter 2.567870e-02 False
1887 847971574464610304 https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 coffee_mug 0.633652 False cup 2.733920e-01 False toilet_tissue 6.665580e-02 False
1888 848212111729840128 https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 Bedlington_terrier 0.333486 True Ibizan_hound 2.457970e-01 True wallaby 1.316470e-01 False
1889 848324959059550208 https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 malamute 0.544576 True Siberian_husky 2.902680e-01 True Eskimo_dog 1.544210e-01 True
1890 848690551926992896 https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 flat-coated_retriever 0.823648 True Newfoundland 1.005710e-01 True groenendael 3.830970e-02 True
1891 849051919805034497 https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 fountain 0.997509 False American_black_bear 1.413120e-03 False sundial 6.811150e-04 False
1892 849336543269576704 https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 patio 0.521788 False prison 1.495440e-01 False restaurant 2.715260e-02 False
1893 849412302885593088 https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 4 schipperke 0.907559 True crossword_puzzle 1.793390e-02 False Chihuahua 1.619070e-02 True
1894 849776966551130114 https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 2 Chihuahua 0.292092 True toy_terrier 1.368520e-01 True bonnet 1.031110e-01 False
1895 850019790995546112 https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 3 Shetland_sheepdog 0.759907 True collie 1.074050e-01 True Pembroke 5.233530e-02 True
1896 850145622816686080 https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 2 tennis_ball 0.714798 False kelpie 1.053900e-01 True malinois 5.855270e-02 True
1897 850380195714523136 https://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg 1 Yorkshire_terrier 0.249012 True Maltese_dog 1.663640e-01 True Shih-Tzu 1.422540e-01 True
1898 850753642995093505 https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 pug 0.996952 True bull_mastiff 9.959010e-04 True French_bulldog 8.833800e-04 True
1899 851224888060895234 https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 3 car_mirror 0.971512 False seat_belt 7.063460e-03 False standard_poodle 5.682650e-03 True
1900 851464819735769094 https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 2 web_site 0.919649 False menu 2.630610e-02 False crossword_puzzle 3.481510e-03 False
1901 851591660324737024 https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 Cardigan 0.394507 True Chihuahua 7.725400e-02 True French_bulldog 7.655880e-02 True
1902 851861385021730816 https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 pencil_box 0.662183 False purse 6.650550e-02 False pillow 4.472530e-02 False
1903 851953902622658560 https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True
1904 852189679701164033 https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 barrow 0.423150 False Bernese_mountain_dog 4.153740e-01 True EntleBucher 6.734540e-02 True
1905 852226086759018497 https://pbs.twimg.com/ext_tw_video_thumb/852223481894903808/pu/img/JWNq40ol4DXvHoUP.jpg 1 prison 0.352793 False dishwasher 1.107230e-01 False file 9.411200e-02 False
1906 852311364735569921 https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 barbell 0.971581 False dumbbell 2.841790e-02 False go-kart 5.595040e-07 False
1907 852553447878664193 https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 bloodhound 0.186498 True Brabancon_griffon 1.390280e-01 True Rottweiler 1.259400e-01 True
1908 852672615818899456 https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 golden_retriever 0.711235 True otterhound 6.823470e-02 True Sussex_spaniel 4.656170e-02 True
1909 852912242202992640 https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 Great_Dane 0.783765 True Rhodesian_ridgeback 1.141470e-01 True English_foxhound 4.643950e-02 True
1910 853299958564483072 https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 1.128460e-01 False convertible 8.625230e-02 False
1911 853639147608842240 https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 German_shepherd 0.509879 True malinois 2.373110e-01 True kelpie 4.691620e-02 True
1912 853760880890318849 https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 miniature_pinscher 0.292519 True Chihuahua 1.209460e-01 True Rottweiler 1.194900e-01 True
1913 854010172552949760 https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 English_springer 0.354733 True collie 1.775380e-01 True Border_collie 1.317060e-01 True
1914 854120357044912130 https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 4 black-and-tan_coonhound 0.854861 True Doberman 5.079180e-02 True bluetick 2.176170e-02 True
1915 854365224396361728 https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 Pembroke 0.907080 True Cardigan 8.627200e-02 True Chihuahua 1.413230e-03 True
1916 854482394044301312 https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 Chihuahua 0.260242 True toy_poodle 1.891580e-01 True Labrador_retriever 1.441950e-01 True
1917 854732716440526848 https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 Pembroke 0.695548 True Cardigan 5.890170e-02 True chow 2.841060e-02 True
1918 855459453768019968 https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 2 Blenheim_spaniel 0.389513 True Pekinese 1.882200e-01 True Japanese_spaniel 8.262820e-02 True
1919 855851453814013952 https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 flat-coated_retriever 0.321676 True Labrador_retriever 1.151380e-01 True groenendael 9.609970e-02 True
1920 856282028240666624 https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 4 Chihuahua 0.876543 True Italian_greyhound 3.296180e-02 True Cardigan 2.077590e-02 True
1921 856526610513747968 https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 Old_English_sheepdog 0.798481 True Tibetan_terrier 6.060240e-02 True standard_poodle 4.072190e-02 True
1922 856543823941562368 https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 Boston_bull 0.306910 True Siamese_cat 1.912180e-01 False Chihuahua 1.892880e-01 True
1923 857029823797047296 https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 2 golden_retriever 0.968623 True Labrador_retriever 1.032520e-02 True Saluki 4.148420e-03 True
1924 857263160327368704 https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 Samoyed 0.998021 True Pomeranian 9.216360e-04 True keeshond 3.112610e-04 True
1925 857393404942143489 https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 3 malamute 0.841597 True Siberian_husky 7.364350e-02 True Eskimo_dog 7.212860e-02 True
1926 857746408056729600 https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 Labrador_retriever 0.919832 True beagle 4.351300e-02 True golden_retriever 2.335880e-02 True
1927 857989990357356544 https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 French_bulldog 0.432580 True English_springer 3.258980e-01 True Lakeland_terrier 4.261790e-02 True
1928 858107933456039936 https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 golden_retriever 0.863874 True Labrador_retriever 1.592000e-02 True doormat 1.061530e-02 False
1929 858471635011153920 https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 Pembroke 0.987407 True Cardigan 8.723030e-03 True basenji 3.423730e-03 True
1930 858843525470990336 https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 golden_retriever 0.578120 True Labrador_retriever 2.860590e-01 True bloodhound 2.691730e-02 True
1931 859074603037188101 https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 revolver 0.190292 False projectile 1.490640e-01 False fountain 6.604660e-02 False
1932 859196978902773760 https://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg 1 Angora 0.224218 False malamute 2.161630e-01 True Persian_cat 1.283830e-01 False
1933 859607811541651456 https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 golden_retriever 0.895529 True Irish_setter 2.409930e-02 True Labrador_retriever 1.928540e-02 True
1934 859851578198683649 https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 4 Labrador_retriever 0.899086 True golden_retriever 4.709080e-02 True kuvasz 2.320630e-02 True
1935 859924526012018688 https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 French_bulldog 0.254587 True Staffordshire_bullterrier 1.925580e-01 True hog 1.002700e-01 False
1936 860184849394610176 https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 chimpanzee 0.267612 False gorilla 1.042930e-01 False orangutan 5.990750e-02 False
1937 860276583193509888 https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 lakeside 0.312299 False dock 1.598420e-01 False canoe 7.079450e-02 False
1938 860524505164394496 https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 Bedlington_terrier 0.286558 True toy_poodle 2.351930e-01 True Lakeland_terrier 8.795070e-02 True
1939 860563773140209665 https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 Cardigan 0.583936 True Pembroke 5.597940e-02 True beagle 4.589570e-02 True
1940 860924035999428608 https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 2 envelope 0.933016 False oscilloscope 1.259140e-02 False paper_towel 1.117850e-02 False
1941 861005113778896900 https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 German_shepherd 0.507951 True Pembroke 1.361130e-01 True muzzle 7.576420e-02 False
1942 861288531465048066 https://pbs.twimg.com/ext_tw_video_thumb/861288473281437696/pu/img/RERGmRgPyaaaB-tB.jpg 1 syringe 0.144712 False oxygen_mask 1.066840e-01 False Bouvier_des_Flandres 8.261020e-02 True
1943 861383897657036800 https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 Cardigan 0.771008 True Pembroke 1.371740e-01 True French_bulldog 6.330860e-02 True
1944 861769973181624320 https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True
1945 862096992088072192 https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 2 chow 0.677589 True Pomeranian 2.706480e-01 True Pekinese 3.810990e-02 True
1946 862457590147678208 https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 home_theater 0.496348 False studio_couch 1.672560e-01 False barber_chair 5.262500e-02 False
1947 862722525377298433 https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 basset 0.393330 True beagle 2.420340e-01 True boxer 7.769250e-02 True
1948 862831371563274240 https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 2 Australian_terrier 0.207281 True Irish_terrier 1.562960e-01 True German_shepherd 1.235360e-01 True
1949 863062471531167744 https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 2 French_bulldog 0.935804 True pug 5.957620e-02 True boxer 1.412180e-03 True
1950 863079547188785154 https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 Lakeland_terrier 0.275242 True Airedale 1.905690e-01 True teddy 1.025950e-01 False
1951 863432100342583297 https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 Staffordshire_bullterrier 0.690517 True French_bulldog 1.033600e-01 True beagle 7.948940e-02 True
1952 863553081350529029 https://pbs.twimg.com/ext_tw_video_thumb/863553036815355904/pu/img/B6Dos-XOD8l82tK7.jpg 1 Eskimo_dog 0.413330 True malamute 3.476460e-01 True Siberian_husky 1.495360e-01 True
1953 863907417377173506 https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 marmot 0.358828 False meerkat 1.747030e-01 False weasel 1.234850e-01 False
1954 864197398364647424 https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 4 golden_retriever 0.945905 True Labrador_retriever 2.126360e-02 True Tibetan_mastiff 2.049280e-02 True
1955 864279568663928832 https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 bull_mastiff 0.668613 True French_bulldog 1.805620e-01 True Staffordshire_bullterrier 5.223740e-02 True
1956 864873206498414592 https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 2 pole 0.478616 False lakeside 1.141820e-01 False wreck 5.592650e-02 False
1957 865006731092295680 https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 Pembroke 0.989882 True Cardigan 9.906460e-03 True basenji 1.349520e-04 True
1958 865359393868664832 https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 2 Chesapeake_Bay_retriever 0.832435 True Labrador_retriever 1.635510e-01 True Weimaraner 2.770250e-03 True
1959 865718153858494464 https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 golden_retriever 0.673664 True kuvasz 1.575230e-01 True Labrador_retriever 1.260730e-01 True
1960 866334964761202691 https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 Samoyed 0.984086 True Pomeranian 7.919280e-03 True keeshond 3.328130e-03 True
1961 866450705531457537 https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 2 French_bulldog 0.905334 True Boston_bull 7.805970e-02 True pug 1.770920e-03 True
1962 866686824827068416 https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 flat-coated_retriever 0.514730 True groenendael 3.064070e-01 True curly-coated_retriever 6.131410e-02 True
1963 867051520902168576 https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 Samoyed 0.471403 True Pekinese 3.022190e-01 True Pomeranian 1.566060e-01 True
1964 867072653475098625 https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 Blenheim_spaniel 0.352946 True papillon 2.117660e-01 True Pekinese 1.129520e-01 True
1965 867421006826221569 https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo_dog 0.616457 True Siberian_husky 3.813300e-01 True malamute 1.670220e-03 True
1966 867774946302451713 https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 2 Border_collie 0.661953 True Cardigan 1.757180e-01 True collie 8.714240e-02 True
1967 867900495410671616 https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 Labrador_retriever 0.522644 True kuvasz 3.324610e-01 True dalmatian 3.200810e-02 True
1968 868552278524837888 https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 whippet 0.378151 True Italian_greyhound 2.759350e-01 True American_Staffordshire_terrier 9.499060e-02 True
1969 868622495443632128 https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 Labrador_retriever 0.868107 True Great_Pyrenees 6.097300e-02 True Saint_Bernard 3.348890e-02 True
1970 868880397819494401 https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False
1971 869227993411051520 https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 Pembroke 0.664181 True Chihuahua 1.692340e-01 True Cardigan 1.327000e-01 True
1972 869596645499047938 https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 Chihuahua 0.955156 True toy_terrier 8.053730e-03 True muzzle 6.295630e-03 False
1973 869702957897576449 https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 Pembroke 0.993449 True Cardigan 6.325080e-03 True Chihuahua 1.775980e-04 True
1974 869772420881756160 https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 Pembroke 0.980148 True Cardigan 1.927110e-02 True malamute 1.362600e-04 True
1975 870063196459192321 https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 comic_book 0.534409 False envelope 2.807220e-01 False book_jacket 4.378550e-02 False
1976 870308999962521604 https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 2 Greater_Swiss_Mountain_dog 0.622752 True Appenzeller 1.584630e-01 True EntleBucher 1.481150e-01 True
1977 870374049280663552 https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 golden_retriever 0.841001 True Great_Pyrenees 9.927840e-02 True Labrador_retriever 3.262130e-02 True
1978 870656317836468226 https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 4 Pembroke 0.945495 True Cardigan 4.587550e-02 True beagle 4.329430e-03 True
1979 870804317367881728 https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 home_theater 0.168290 False sandbar 9.804040e-02 False television 7.972940e-02 False
1980 871032628920680449 https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 kelpie 0.398053 True macaque 6.895490e-02 False dingo 5.060180e-02 False
1981 871515927908634625 https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 2 komondor 0.974781 True briard 2.004130e-02 True swab 3.228240e-03 False
1982 871762521631449091 https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 2 Labrador_retriever 0.921393 True golden_retriever 6.460800e-02 True bloodhound 3.383370e-03 True
1983 871879754684805121 https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 Shetland_sheepdog 0.969171 True collie 1.826070e-02 True Pomeranian 8.515340e-03 True
1984 872122724285648897 https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 basketball 0.808396 False pug 6.673630e-02 True dalmatian 5.456980e-02 True
1985 872261713294495745 https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 2 Labrador_retriever 0.972019 True flat-coated_retriever 8.178280e-03 True Chesapeake_Bay_retriever 7.359270e-03 True
1986 872486979161796608 https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 Pembroke 0.931861 True Cardigan 3.772120e-02 True Chihuahua 1.196670e-02 True
1987 872620804844003328 https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 cocker_spaniel 0.513191 True Sussex_spaniel 1.590880e-01 True standard_poodle 1.495090e-01 True
1988 872820683541237760 https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 3 pug 0.999120 True French_bulldog 5.519200e-04 True bull_mastiff 7.289040e-05 True
1989 872967104147763200 https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 2 Labrador_retriever 0.476913 True Chesapeake_Bay_retriever 1.741450e-01 True German_short-haired_pointer 9.286140e-02 True
1990 873213775632977920 https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 vizsla 0.619782 True bloodhound 3.380690e-01 True Chesapeake_Bay_retriever 1.267630e-02 True
1991 873580283840344065 https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 Newfoundland 0.678537 True Tibetan_mastiff 2.440220e-01 True chow 4.852950e-02 True
1992 873697596434513921 https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False
1993 874012996292530176 https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 2 Cardigan 0.806674 True Pembroke 1.166220e-01 True kelpie 4.918190e-02 True
1994 874057562936811520 https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 flat-coated_retriever 0.832177 True black-and-tan_coonhound 4.043690e-02 True Newfoundland 2.822830e-02 True
1995 874296783580663808 https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 cocker_spaniel 0.437216 True miniature_poodle 2.771910e-01 True toy_poodle 1.574020e-01 True
1996 874680097055178752 https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 Labrador_retriever 0.836052 True Staffordshire_bullterrier 4.706910e-02 True beagle 3.600710e-02 True
1997 875021211251597312 https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 2 West_Highland_white_terrier 0.714319 True Siberian_husky 9.191330e-02 True Great_Pyrenees 4.603820e-02 True
1998 875144289856114688 https://pbs.twimg.com/ext_tw_video_thumb/875144175078957056/pu/img/BRi_l7vUdpb93Knf.jpg 1 Siberian_husky 0.245048 True Pembroke 2.237160e-01 True dingo 1.607530e-01 False
1999 875747767867523072 https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 Labrador_retriever 0.799551 True Chesapeake_Bay_retriever 1.799750e-01 True vizsla 4.617600e-03 True
2000 876120275196170240 https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 Bernese_mountain_dog 0.534327 True Saint_Bernard 3.463120e-01 True Greater_Swiss_Mountain_dog 9.493270e-02 True
2001 876484053909872640 https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 golden_retriever 0.874566 True Irish_terrier 3.735420e-02 True chow 1.672360e-02 True
2002 876838120628539392 https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 bloodhound 0.575751 True redbone 2.409700e-01 True Tibetan_mastiff 8.893480e-02 True
2003 877201837425926144 https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 Pembroke 0.931120 True Cardigan 6.869820e-02 True basenji 8.173790e-05 True
2004 877316821321428993 https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 Saluki 0.509967 True Italian_greyhound 9.049730e-02 True golden_retriever 7.940580e-02 True
2005 877556246731214848 https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 basset 0.995368 True Welsh_springer_spaniel 1.936210e-03 True bathtub 4.679190e-04 False
2006 877611172832227328 https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish_setter 0.364729 True golden_retriever 2.029070e-01 True Irish_terrier 1.074730e-01 True
2007 877736472329191424 https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 2 Chesapeake_Bay_retriever 0.837956 True Labrador_retriever 6.203420e-02 True Weimaraner 4.059910e-02 True
2008 878057613040115712 https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 French_bulldog 0.839097 True Boston_bull 7.879940e-02 True toy_terrier 1.524340e-02 True
2009 878281511006478336 https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 basset 0.320420 True collie 2.159750e-01 True Appenzeller 1.285070e-01 True
2010 878776093423087618 https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 2 Italian_greyhound 0.734684 True whippet 1.504870e-01 True Ibizan_hound 3.972460e-02 True
2011 879008229531029506 https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 vizsla 0.960513 True miniature_pinscher 9.430650e-03 True American_Staffordshire_terrier 8.711300e-03 True
2012 879050749262655488 https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 tabby 0.311861 False window_screen 1.691230e-01 False Egyptian_cat 1.329320e-01 False
2013 879376492567855104 https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 tricycle 0.663601 False Labrador_retriever 3.349610e-02 True Pembroke 1.882660e-02 True
2014 879415818425184262 https://pbs.twimg.com/ext_tw_video_thumb/879415784908390401/pu/img/cX7XI1TnUsseGET5.jpg 1 English_springer 0.383404 True Boston_bull 1.349670e-01 True Cardigan 1.104810e-01 True
2015 879492040517615616 https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 German_short-haired_pointer 0.479896 True vizsla 1.243530e-01 True bath_towel 7.332020e-02 False
2016 879862464715927552 https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 3 basset 0.813507 True beagle 1.466540e-01 True cocker_spaniel 9.485020e-03 True
2017 880095782870896641 https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 miniature_pinscher 0.120298 True Rhodesian_ridgeback 1.063950e-01 True beagle 1.060730e-01 True
2018 880221127280381952 https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 Chihuahua 0.238525 True meerkat 1.042560e-01 False clumber 5.258030e-02 True
2019 880465832366813184 https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 golden_retriever 0.913255 True Labrador_retriever 2.632860e-02 True cocker_spaniel 9.370820e-03 True
2020 880872448815771648 https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 Pembroke 0.791416 True Norwich_terrier 6.139290e-02 True Chihuahua 3.372570e-02 True
2021 880935762899988482 https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 street_sign 0.251801 False umbrella 1.151230e-01 False traffic_light 6.953380e-02 False
2022 881268444196462592 https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 tusker 0.473303 False Indian_elephant 2.456460e-01 False ibex 5.566070e-02 False
2023 881536004380872706 https://pbs.twimg.com/ext_tw_video_thumb/881535971568889856/pu/img/9bawiZ--8FKywTkz.jpg 1 Samoyed 0.281463 True Angora 2.720660e-01 False Persian_cat 1.148540e-01 False
2024 881666595344535552 https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 Saluki 0.529012 True Afghan_hound 2.500030e-01 True golden_retriever 1.607390e-01 True
2025 881906580714921986 https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 Weimaraner 0.291539 True Chesapeake_Bay_retriever 2.789660e-01 True koala 1.270170e-01 False
2026 882045870035918850 https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 web_site 0.949591 False dhole 1.732580e-02 False golden_retriever 6.940630e-03 True
2027 882268110199369728 https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 golden_retriever 0.762211 True Labrador_retriever 9.898490e-02 True cocker_spaniel 1.719950e-02 True
2028 882627270321602560 https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 Pembroke 0.542982 True Chihuahua 2.519880e-01 True Cardigan 1.076990e-01 True
2029 882762694511734784 https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 Labrador_retriever 0.850050 True Chesapeake_Bay_retriever 7.425700e-02 True flat-coated_retriever 1.557940e-02 True
2030 882992080364220416 https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 Eskimo_dog 0.466778 True Siberian_husky 4.060440e-01 True dingo 7.341440e-02 False
2031 883117836046086144 https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 2 golden_retriever 0.949562 True Labrador_retriever 4.594790e-02 True kuvasz 2.470940e-03 True
2032 883360690899218434 https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 chow 0.987997 True Tibetan_mastiff 7.098720e-03 True Newfoundland 2.140330e-03 True
2033 883482846933004288 https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 golden_retriever 0.943082 True Labrador_retriever 3.240900e-02 True kuvasz 5.500720e-03 True
2034 883838122936631299 https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True miniature_pinscher 2.996030e-01 True kelpie 6.302030e-02 True
2035 884162670584377345 https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 German_shepherd 0.707046 True malinois 1.993960e-01 True Norwegian_elkhound 4.914760e-02 True
2036 884441805382717440 https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 Pembroke 0.993225 True Cardigan 3.216480e-03 True Chihuahua 2.080890e-03 True
2037 884562892145688576 https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 pug 0.546406 True French_bulldog 4.042910e-01 True Brabancon_griffon 4.400190e-02 True
2038 884876753390489601 https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 chow 0.822103 True Norwich_terrier 1.060750e-01 True Norfolk_terrier 3.734850e-02 True
2039 884925521741709313 https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 Italian_greyhound 0.259916 True American_Staffordshire_terrier 1.984510e-01 True Staffordshire_bullterrier 1.277250e-01 True
2040 885167619883638784 https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 4 malamute 0.812482 True Siberian_husky 7.171250e-02 True Eskimo_dog 5.576970e-02 True
2041 885311592912609280 https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True
2042 885528943205470208 https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 pug 0.369275 True Labrador_retriever 2.658350e-01 True kuvasz 1.346970e-01 True
2043 885984800019947520 https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 Blenheim_spaniel 0.972494 True Shih-Tzu 6.630120e-03 True Bernese_mountain_dog 6.239150e-03 True
2044 886258384151887873 https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 pug 0.943575 True shower_cap 2.528560e-02 False Siamese_cat 2.848920e-03 False
2045 886366144734445568 https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 French_bulldog 0.999201 True Chihuahua 3.611780e-04 True Boston_bull 7.556160e-05 True
2046 886680336477933568 https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 convertible 0.738995 False sports_car 1.399520e-01 False car_wheel 4.417270e-02 False
2047 886736880519319552 https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 kuvasz 0.309706 True Great_Pyrenees 1.861360e-01 True Dandie_Dinmont 8.634630e-02 True
2048 886983233522544640 https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 2 Chihuahua 0.793469 True toy_terrier 1.435280e-01 True can_opener 3.225290e-02 False
2049 887101392804085760 https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 Samoyed 0.733942 True Eskimo_dog 3.502950e-02 True Staffordshire_bullterrier 2.970470e-02 True
2050 887343217045368832 https://pbs.twimg.com/ext_tw_video_thumb/887343120832229379/pu/img/6HSuFrW1lzI_9Mht.jpg 1 Mexican_hairless 0.330741 True sea_lion 2.756450e-01 False Weimaraner 1.342030e-01 True
2051 887473957103951883 https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True
2052 887517139158093824 https://pbs.twimg.com/ext_tw_video_thumb/887517108413886465/pu/img/WanJKwssZj4VJvL9.jpg 1 limousine 0.130432 False tow_truck 2.917540e-02 False shopping_cart 2.632080e-02 False
2053 887705289381826560 https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 basset 0.821664 True redbone 8.758150e-02 True Weimaraner 2.623640e-02 True
2054 888078434458587136 https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 French_bulldog 0.995026 True pug 9.319080e-04 True bull_mastiff 9.032110e-04 True
2055 888202515573088257 https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True
2056 888554962724278272 https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 3 Siberian_husky 0.700377 True Eskimo_dog 1.665110e-01 True malamute 1.114110e-01 True
2057 888804989199671297 https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 golden_retriever 0.469760 True Labrador_retriever 1.841720e-01 True English_setter 7.348170e-02 True
2058 888917238123831296 https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 golden_retriever 0.714719 True Tibetan_mastiff 1.201840e-01 True Labrador_retriever 1.055060e-01 True
2059 889278841981685760 https://pbs.twimg.com/ext_tw_video_thumb/889278779352338437/pu/img/VlbFB3v8H8VwzVNY.jpg 1 whippet 0.626152 True borzoi 1.947420e-01 True Saluki 2.735070e-02 True
2060 889531135344209921 https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 golden_retriever 0.953442 True Labrador_retriever 1.383410e-02 True redbone 7.957750e-03 True
2061 889638837579907072 https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 French_bulldog 0.991650 True boxer 2.128640e-03 True Staffordshire_bullterrier 1.498180e-03 True
2062 889665388333682689 https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 Pembroke 0.966327 True Cardigan 2.735570e-02 True basenji 4.633230e-03 True
2063 889880896479866881 https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 French_bulldog 0.377417 True Labrador_retriever 1.513170e-01 True muzzle 8.298110e-02 False
2064 890006608113172480 https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 Samoyed 0.957979 True Pomeranian 1.388350e-02 True chow 8.167480e-03 True
2065 890240255349198849 https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 Pembroke 0.511319 True Cardigan 4.510380e-01 True Chihuahua 2.924820e-02 True
2066 890609185150312448 https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 Irish_terrier 0.487574 True Irish_setter 1.930540e-01 True Chesapeake_Bay_retriever 1.181840e-01 True
2067 890729181411237888 https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 2 Pomeranian 0.566142 True Eskimo_dog 1.784060e-01 True Pembroke 7.650690e-02 True
2068 890971913173991426 https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 Appenzeller 0.341703 True Border_collie 1.992870e-01 True ice_lolly 1.935480e-01 False
2069 891087950875897856 https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 Chesapeake_Bay_retriever 0.425595 True Irish_terrier 1.163170e-01 True Indian_elephant 7.690220e-02 False
2070 891327558926688256 https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 2.257700e-01 True German_short-haired_pointer 1.752190e-01 True
2071 891689557279858688 https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 1.680860e-01 True spatula 4.083590e-02 False
2072 891815181378084864 https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 7.825300e-02 True kelpie 3.137890e-02 True
2073 892177421306343426 https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 9.064650e-02 True papillon 6.895690e-02 True
2074 892420643555336193 https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 8.585110e-02 False banana 7.611000e-02 False
In [18]:
image_predictions_df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2075 entries, 0 to 2074
Data columns (total 12 columns):
 #   Column    Non-Null Count  Dtype  
---  ------    --------------  -----  
 0   tweet_id  2075 non-null   int64  
 1   jpg_url   2075 non-null   object 
 2   img_num   2075 non-null   int64  
 3   p1        2075 non-null   object 
 4   p1_conf   2075 non-null   float64
 5   p1_dog    2075 non-null   bool   
 6   p2        2075 non-null   object 
 7   p2_conf   2075 non-null   float64
 8   p2_dog    2075 non-null   bool   
 9   p3        2075 non-null   object 
 10  p3_conf   2075 non-null   float64
 11  p3_dog    2075 non-null   bool   
dtypes: bool(3), float64(3), int64(2), object(4)
memory usage: 152.1+ KB
In [19]:
image_predictions_df.isnull().sum()
Out[19]:
tweet_id    0
jpg_url     0
img_num     0
p1          0
p1_conf     0
p1_dog      0
p2          0
p2_conf     0
p2_dog      0
p3          0
p3_conf     0
p3_dog      0
dtype: int64
In [20]:
image_predictions_df.describe()
Out[20]:
tweet_id img_num p1_conf p2_conf p3_conf
count 2.075000e+03 2075.000000 2075.000000 2.075000e+03 2.075000e+03
mean 7.384514e+17 1.203855 0.594548 1.345886e-01 6.032417e-02
std 6.785203e+16 0.561875 0.271174 1.006657e-01 5.090593e-02
min 6.660209e+17 1.000000 0.044333 1.011300e-08 1.740170e-10
25% 6.764835e+17 1.000000 0.364412 5.388625e-02 1.622240e-02
50% 7.119988e+17 1.000000 0.588230 1.181810e-01 4.944380e-02
75% 7.932034e+17 1.000000 0.843855 1.955655e-01 9.180755e-02
max 8.924206e+17 4.000000 1.000000 4.880140e-01 2.734190e-01

Qaulity issues

  • columns(p1,p2,p3): showing first letter issue (capital and small letter) and underscore (_) need to be replaced with space
  • p1, p2 and p3 as predictions, New column should be created to go through these predictions and finalize if the dog is breed or not. It will pick the first true predictions

tweet_df

In [21]:
tweet_df.head()
Out[21]:
created_at id id_str full_text truncated display_text_range entities extended_entities source in_reply_to_status_id in_reply_to_status_id_str in_reply_to_user_id in_reply_to_user_id_str in_reply_to_screen_name user geo coordinates place contributors is_quote_status retweet_count favorite_count favorited retweeted possibly_sensitive possibly_sensitive_appealable lang retweeted_status quoted_status_id quoted_status_id_str quoted_status
0 2017-08-01 16:23:56+00:00 892420643555336193 892420643555336192 This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU False [0, 85] {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 892420639486877696, 'id_str': '892420639486877696', 'indices': [86, 109], 'media_url': 'http://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'url': 'https://t.co/MgUWQ76dJU', 'display_url': 'pic.twitter.com/MgUWQ76dJU', 'expanded_url': 'https://twitter.com/dog_rates/status/892420643555336193/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 540, 'h': 528, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 540, 'h': 528, 'resize': 'fit'}, 'medium': {'w': 540, 'h': 528, 'resize': 'fit'}}}]} {'media': [{'id': 892420639486877696, 'id_str': '892420639486877696', 'indices': [86, 109], 'media_url': 'http://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'url': 'https://t.co/MgUWQ76dJU', 'display_url': 'pic.twitter.com/MgUWQ76dJU', 'expanded_url': 'https://twitter.com/dog_rates/status/892420643555336193/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 540, 'h': 528, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 540, 'h': 528, 'resize': 'fit'}, 'medium': {'w': 540, 'h': 528, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 8853 39467 False False 0.0 0.0 en NaN NaN NaN NaN
1 2017-08-01 00:17:27+00:00 892177421306343426 892177421306343424 This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV False [0, 138] {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 892177413194625024, 'id_str': '892177413194625024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'url': 'https://t.co/0Xxu71qeIV', 'display_url': 'pic.twitter.com/0Xxu71qeIV', 'expanded_url': 'https://twitter.com/dog_rates/status/892177421306343426/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1407, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 598, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1055, 'h': 1200, 'resize': 'fit'}}}]} {'media': [{'id': 892177413194625024, 'id_str': '892177413194625024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'url': 'https://t.co/0Xxu71qeIV', 'display_url': 'pic.twitter.com/0Xxu71qeIV', 'expanded_url': 'https://twitter.com/dog_rates/status/892177421306343426/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1407, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 598, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1055, 'h': 1200, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 6514 33819 False False 0.0 0.0 en NaN NaN NaN NaN
2 2017-07-31 00:18:03+00:00 891815181378084864 891815181378084864 This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB False [0, 121] {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891815175371796480, 'id_str': '891815175371796480', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'url': 'https://t.co/wUnZnhtVJB', 'display_url': 'pic.twitter.com/wUnZnhtVJB', 'expanded_url': 'https://twitter.com/dog_rates/status/891815181378084864/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]} {'media': [{'id': 891815175371796480, 'id_str': '891815175371796480', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'url': 'https://t.co/wUnZnhtVJB', 'display_url': 'pic.twitter.com/wUnZnhtVJB', 'expanded_url': 'https://twitter.com/dog_rates/status/891815181378084864/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 4328 25461 False False 0.0 0.0 en NaN NaN NaN NaN
3 2017-07-30 15:58:51+00:00 891689557279858688 891689557279858688 This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ False [0, 79] {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891689552724799489, 'id_str': '891689552724799489', 'indices': [80, 103], 'media_url': 'http://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'url': 'https://t.co/tD36da7qLQ', 'display_url': 'pic.twitter.com/tD36da7qLQ', 'expanded_url': 'https://twitter.com/dog_rates/status/891689557279858688/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]} {'media': [{'id': 891689552724799489, 'id_str': '891689552724799489', 'indices': [80, 103], 'media_url': 'http://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'url': 'https://t.co/tD36da7qLQ', 'display_url': 'pic.twitter.com/tD36da7qLQ', 'expanded_url': 'https://twitter.com/dog_rates/status/891689557279858688/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 8964 42908 False False 0.0 0.0 en NaN NaN NaN NaN
4 2017-07-29 16:00:24+00:00 891327558926688256 891327558926688256 This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f False [0, 138] {'hashtags': [{'text': 'BarkWeek', 'indices': [129, 138]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891327551943041024, 'id_str': '891327551943041024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'url': 'https://t.co/AtUZn91f7f', 'display_url': 'pic.twitter.com/AtUZn91f7f', 'expanded_url': 'https://twitter.com/dog_rates/status/891327558926688256/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 720, 'h': 540, 'resize': 'fit'}}}]} {'media': [{'id': 891327551943041024, 'id_str': '891327551943041024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'url': 'https://t.co/AtUZn91f7f', 'display_url': 'pic.twitter.com/AtUZn91f7f', 'expanded_url': 'https://twitter.com/dog_rates/status/891327558926688256/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 720, 'h': 540, 'resize': 'fit'}}}, {'id': 891327551947157504, 'id_str': '891327551947157504', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg', 'url': 'https://t.co/AtUZn91f7f', 'display_url': 'pic.twitter.com/AtUZn91f7f', 'expanded_url': 'https://twitter.com/dog_rates/status/891327558926688256/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 720, 'h': 540, 'resize': 'fit'}}}]} <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> NaN NaN NaN NaN None {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs™ (author)', 'screen_name': 'dog_rates', 'location': 'DM YOUR DOGS, WE WILL RATE', 'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com', 'url': 'https://t.co/N7sNNHAEXS', 'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS', 'expanded_url': 'http://weratedogs.com', 'display_url': 'weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 3200889, 'friends_count': 104, 'listed_count': 2784, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 114031, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 5288, 'lang': 'en', 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': True, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none'} NaN NaN None NaN False 9774 41048 False False 0.0 0.0 en NaN NaN NaN NaN
In [22]:
tweet_df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2354 entries, 0 to 2353
Data columns (total 31 columns):
 #   Column                         Non-Null Count  Dtype              
---  ------                         --------------  -----              
 0   created_at                     2354 non-null   datetime64[ns, UTC]
 1   id                             2354 non-null   int64              
 2   id_str                         2354 non-null   int64              
 3   full_text                      2354 non-null   object             
 4   truncated                      2354 non-null   bool               
 5   display_text_range             2354 non-null   object             
 6   entities                       2354 non-null   object             
 7   extended_entities              2073 non-null   object             
 8   source                         2354 non-null   object             
 9   in_reply_to_status_id          78 non-null     float64            
 10  in_reply_to_status_id_str      78 non-null     float64            
 11  in_reply_to_user_id            78 non-null     float64            
 12  in_reply_to_user_id_str        78 non-null     float64            
 13  in_reply_to_screen_name        78 non-null     object             
 14  user                           2354 non-null   object             
 15  geo                            0 non-null      float64            
 16  coordinates                    0 non-null      float64            
 17  place                          1 non-null      object             
 18  contributors                   0 non-null      float64            
 19  is_quote_status                2354 non-null   bool               
 20  retweet_count                  2354 non-null   int64              
 21  favorite_count                 2354 non-null   int64              
 22  favorited                      2354 non-null   bool               
 23  retweeted                      2354 non-null   bool               
 24  possibly_sensitive             2211 non-null   float64            
 25  possibly_sensitive_appealable  2211 non-null   float64            
 26  lang                           2354 non-null   object             
 27  retweeted_status               179 non-null    object             
 28  quoted_status_id               29 non-null     float64            
 29  quoted_status_id_str           29 non-null     float64            
 30  quoted_status                  28 non-null     object             
dtypes: bool(4), datetime64[ns, UTC](1), float64(11), int64(4), object(11)
memory usage: 505.9+ KB
In [23]:
tweet_df.isnull().sum()
Out[23]:
created_at                          0
id                                  0
id_str                              0
full_text                           0
truncated                           0
display_text_range                  0
entities                            0
extended_entities                 281
source                              0
in_reply_to_status_id            2276
in_reply_to_status_id_str        2276
in_reply_to_user_id              2276
in_reply_to_user_id_str          2276
in_reply_to_screen_name          2276
user                                0
geo                              2354
coordinates                      2354
place                            2353
contributors                     2354
is_quote_status                     0
retweet_count                       0
favorite_count                      0
favorited                           0
retweeted                           0
possibly_sensitive                143
possibly_sensitive_appealable     143
lang                                0
retweeted_status                 2175
quoted_status_id                 2325
quoted_status_id_str             2325
quoted_status                    2326
dtype: int64
In [24]:
tweet_df.describe()
Out[24]:
id id_str in_reply_to_status_id in_reply_to_status_id_str in_reply_to_user_id in_reply_to_user_id_str geo coordinates contributors retweet_count favorite_count possibly_sensitive possibly_sensitive_appealable quoted_status_id quoted_status_id_str
count 2.354000e+03 2.354000e+03 7.800000e+01 7.800000e+01 7.800000e+01 7.800000e+01 0.0 0.0 0.0 2354.000000 2354.000000 2211.0 2211.0 2.900000e+01 2.900000e+01
mean 7.426978e+17 7.426978e+17 7.455079e+17 7.455079e+17 2.014171e+16 2.014171e+16 NaN NaN NaN 3164.797366 8080.968564 0.0 0.0 8.162686e+17 8.162686e+17
std 6.852812e+16 6.852812e+16 7.582492e+16 7.582492e+16 1.252797e+17 1.252797e+17 NaN NaN NaN 5284.770364 11814.771334 0.0 0.0 6.164161e+16 6.164161e+16
min 6.660209e+17 6.660209e+17 6.658147e+17 6.658147e+17 1.185634e+07 1.185634e+07 NaN NaN NaN 0.000000 0.000000 0.0 0.0 6.721083e+17 6.721083e+17
25% 6.783975e+17 6.783975e+17 6.757419e+17 6.757419e+17 3.086374e+08 3.086374e+08 NaN NaN NaN 624.500000 1415.000000 0.0 0.0 7.888183e+17 7.888183e+17
50% 7.194596e+17 7.194596e+17 7.038708e+17 7.038708e+17 4.196984e+09 4.196984e+09 NaN NaN NaN 1473.500000 3603.500000 0.0 0.0 8.340867e+17 8.340867e+17
75% 7.993058e+17 7.993058e+17 8.257804e+17 8.257804e+17 4.196984e+09 4.196984e+09 NaN NaN NaN 3652.000000 10122.250000 0.0 0.0 8.664587e+17 8.664587e+17
max 8.924206e+17 8.924206e+17 8.862664e+17 8.862664e+17 8.405479e+17 8.405479e+17 NaN NaN NaN 79515.000000 132810.000000 0.0 0.0 8.860534e+17 8.860534e+17

Quality issues:

  • (id) This should should be changed to tweet_id
  • (id, retweet_count and favorite_count) these the only columns that should be kept, other columns will be removed

Cleaning Data

Making A copy of each dataframe

In [25]:
twitter_archive_df_clean = twitter_archive_df.copy()
image_predictions_df_clean = image_predictions_df.copy()
tweet_df_clean = tweet_df.copy()

Quality issue

Define:

twitter_archive_df timestamp column has +0000. This should be removed and the time should be extracted out.

In [26]:
twitter_archive_df_clean.timestamp[0]
Out[26]:
'2017-08-01 16:23:56 +0000'

code:

In [27]:
twitter_archive_df_clean.timestamp = twitter_archive_df_clean.timestamp.str.extract('(.*) +')

Test:

In [28]:
twitter_archive_df_clean.timestamp[:5]
Out[28]:
0    2017-08-01 16:23:56
1    2017-08-01 00:17:27
2    2017-07-31 00:18:03
3    2017-07-30 15:58:51
4    2017-07-29 16:00:24
Name: timestamp, dtype: object

Quality issue

Define:

twitter_archive_df timestamp column has dtpye as object. It should be changed to datetime dtype

code:

In [29]:
twitter_archive_df_clean.timestamp = pd.to_datetime(twitter_archive_df_clean.timestamp)

Test

In [30]:
twitter_archive_df_clean.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2356 entries, 0 to 2355
Data columns (total 17 columns):
 #   Column                      Non-Null Count  Dtype         
---  ------                      --------------  -----         
 0   tweet_id                    2356 non-null   int64         
 1   in_reply_to_status_id       78 non-null     float64       
 2   in_reply_to_user_id         78 non-null     float64       
 3   timestamp                   2356 non-null   datetime64[ns]
 4   source                      2356 non-null   object        
 5   text                        2356 non-null   object        
 6   retweeted_status_id         181 non-null    float64       
 7   retweeted_status_user_id    181 non-null    float64       
 8   retweeted_status_timestamp  181 non-null    object        
 9   expanded_urls               2297 non-null   object        
 10  rating_numerator            2356 non-null   int64         
 11  rating_denominator          2356 non-null   int64         
 12  name                        2356 non-null   object        
 13  doggo                       2356 non-null   object        
 14  floofer                     2356 non-null   object        
 15  pupper                      2356 non-null   object        
 16  puppo                       2356 non-null   object        
dtypes: datetime64[ns](1), float64(4), int64(3), object(9)
memory usage: 313.0+ KB

Quality issue

define

There some decimal dog rating values

In [85]:
twitter_archive_df_clean[twitter_archive_df_clean.text.str.contains(r"(\d+\.\d*\/\d+)")][['text', 'rating_numerator']]
Out[85]:
text rating_numerator
45 This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 5
695 This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS 75
763 This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq 27
1712 Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD 26

code

In [87]:
twitter_archive_df_clean.loc[45,'rating_numerator'] = 13.5
twitter_archive_df_clean.loc[695,'rating_numerator'] = 9.75
twitter_archive_df_clean.loc[763, 'rating_numerator'] = 11.27
twitter_archive_df_clean.loc[1712, 'rating_numerator'] = 11.26

Test

In [89]:
twitter_archive_df_clean[twitter_archive_df_clean.text.str.contains(r"(\d+\.\d*\/\d+)")][['text', 'rating_numerator']]
/Users/abdulazizalabdullatif/opt/anaconda3/lib/python3.8/site-packages/pandas/core/strings.py:2001: UserWarning: This pattern has match groups. To actually get the groups, use str.extract.
  return func(self, *args, **kwargs)
Out[89]:
text rating_numerator
45 This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 13.50
695 This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS 9.75
763 This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq 11.27
1712 Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD 11.26

Quality issue

Define:

twitter_archive_df source column shows the (href ..) link. The source should be exracted out of the link.

In [31]:
twitter_archive_df_clean.source[:2]
Out[31]:
0    <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1    <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
Name: source, dtype: object

code

In [32]:
twitter_archive_df_clean.source = twitter_archive_df_clean.source.str.extract('>(.*)<')

Test

In [33]:
twitter_archive_df_clean.source[:2]
Out[33]:
0    Twitter for iPhone
1    Twitter for iPhone
Name: source, dtype: object

Quality issue

Define:

Dogs name column has some rows with strange names. Name's examples (an, None, 0, a, Al, my, this, all, old, infuriating, the). It should be repalced so it will be replaced NaN.

code

In [34]:
twitter_archive_df_clean.name.replace(['an','None','0','a','Al','my','this','all','old','infuriating','the'],np.nan, inplace=True)

Test

In [35]:
twitter_archive_df_clean.name.value_counts()
Out[35]:
Charlie           12
Lucy              11
Oliver            11
Cooper            11
Penny             10
Lola              10
Tucker            10
Winston            9
Bo                 9
Sadie              8
Daisy              7
Toby               7
Buddy              7
Bailey             7
Milo               6
Scout              6
Leo                6
Stanley            6
Rusty              6
Jax                6
Oscar              6
Koda               6
Dave               6
Bella              6
Jack               6
Finn               5
Gus                5
Phil               5
Louis              5
Oakley             5
Chester            5
Bentley            5
Sunny              5
Sammy              5
Larry              5
very               5
George             5
Alfie              5
Cassie             4
Derek              4
Brody              4
Ruby               4
Beau               4
Jeffrey            4
Moose              4
Carl               4
Maggie             4
Archie             4
Gerald             4
Loki               4
Reginald           4
Clark              4
Gary               4
quite              4
Jerry              4
Hank               4
Bruce              4
Luna               4
Shadow             4
Scooter            4
Duke               4
Maximus            4
Bear               4
Dexter             4
Reggie             4
Maddie             4
Chip               4
Winnie             4
just               4
one                4
Clarence           4
Sophie             4
Boomer             4
Riley              4
Sampson            4
Walter             4
Vincent            3
Coco               3
Jimothy            3
Wallace            3
Reese              3
Max                3
Wilson             3
Lorenzo            3
Klevin             3
Arnie              3
Ellie              3
Ted                3
Louie              3
Steven             3
Rory               3
Rosie              3
Mia                3
Paisley            3
Samson             3
Otis               3
Frankie            3
Kyle               3
Colby              3
Nala               3
Lily               3
Wyatt              3
Doug               3
Waffles            3
Sebastian          3
Malcolm            3
Zeke               3
Gizmo              3
Zoey               3
Olive              3
Calvin             3
Peaches            3
Earl               3
Philbert           2
Canela             2
Marley             2
Linda              2
Hercules           2
Dash               2
Tyrone             2
Eli                2
Hobbes             2
Cash               2
Balto              2
Penelope           2
Raymond            2
Maxaroni           2
Olivia             2
Stubert            2
Phineas            2
Kenny              2
Rizzy              2
getting            2
Sam                2
Jiminy             2
Layla              2
Bungalo            2
Doc                2
Kirby              2
Moe                2
Calbert            2
Chompsky           2
Meyer              2
Astrid             2
Kilo               2
Cali               2
Herm               2
Pippa              2
Ozzy               2
Betty              2
Benedict           2
Oliviér            2
Indie              2
Jesse              2
Chipson            2
Levi               2
Lou                2
Chelsea            2
Cupcake            2
Fred               2
Davey              2
Hammond            2
Herschel           2
Bisquick           2
Harper             2
Theodore           2
Rufus              2
Roosevelt          2
Rubio              2
Dawn               2
Carly              2
Griffin            2
Butter             2
Belle              2
Sierra             2
Romeo              2
Mister             2
Bell               2
Curtis             2
mad                2
Pickles            2
Juno               2
Albus              2
Mattie             2
Patrick            2
Phred              2
Churlie            2
Ash                2
Gidget             2
Finley             2
Leela              2
Alice              2
Kreg               2
Sansa              2
Elliot             2
Charles            2
Fiona              2
Luca               2
Harold             2
Percy              2
Wally              2
Frank              2
Quinn              2
Lennon             2
Django             2
Titan              2
Atticus            2
Hurley             2
Thumas             2
Atlas              2
Solomon            2
Gabe               2
Ava                2
Piper              2
Blitz              2
Oshie              2
Gromit             2
Kenneth            2
Misty              2
Remington          2
Jamesy             2
Nelly              2
Sarge              2
Jeph               2
Sugar              2
Benji              2
Terry              2
Lincoln            2
Bernie             2
Bubbles            2
Rocky              2
Yogi               2
Chet               2
actually           2
Emmy               2
Timison            2
Kevin              2
Crystal            2
Smokey             2
Opal               2
Tyr                2
Chuckles           2
Shaggy             2
Keurig             2
Eve                2
Coops              2
Franklin           2
Bob                2
Jimison            2
Albert             2
Rocco              2
Odie               2
Baloo              2
Seamus             2
Watson             2
Dakota             2
Abby               2
Baxter             2
Fizz               2
Sandy              2
Ollie              2
Aspen              2
Paull              2
Neptune            2
Lenny              2
Nollie             2
Logan              2
Herald             2
Cody               2
Anakin             2
Klein              2
Ken                2
Brad               2
Moreton            2
Axel               2
Trooper            2
Happy              2
Flávio             2
Kyro               2
Lilly              2
Hunter             2
Panda              2
Terrance           2
CeCe               2
Keith              2
Stephan            2
Pipsy              2
Jackson            2
Kreggory           2
Pablo              2
not                2
Skittle            1
Tilly              1
Alexander          1
Hector             1
Tiger              1
Tedrick            1
Mo                 1
Jaspers            1
Juckson            1
Sparky             1
Mabel              1
Cheesy             1
Nimbus             1
Bluebert           1
Tom                1
Sailor             1
Eevee              1
Iggy               1
Bode               1
Emma               1
Schnitzel          1
Sephie             1
Cora               1
Timofy             1
Dook               1
Darby              1
Jennifur           1
Cermet             1
Bubba              1
Monster            1
Coleman            1
Akumi              1
Angel              1
Jeb                1
unacceptable       1
Carbon             1
Shadoe             1
Pluto              1
Clyde              1
Antony             1
Chubbs             1
Cheryl             1
Arya               1
Timber             1
Hubertson          1
Jarod              1
Rumble             1
Sky                1
Meera              1
Brutus             1
Rizzo              1
Link               1
Mya                1
Kaiya              1
Traviss            1
Rhino              1
Remy               1
Lilah              1
Dobby              1
Cal                1
Severus            1
Laela              1
Marvin             1
Dante              1
Oddie              1
Lupe               1
Dale               1
Wafer              1
Mike               1
Dallas             1
Tuco               1
Halo               1
Kobe               1
Gilbert            1
Jett               1
Stefan             1
such               1
life               1
Sage               1
Brooks             1
William            1
Edgar              1
DonDon             1
Steve              1
Alejandro          1
Bruno              1
Gòrdón             1
Ace                1
Zuzu               1
Tug                1
Major              1
Batdog             1
Snoop              1
Maxwell            1
Franq              1
Lorelei            1
Frönq              1
Schnozz            1
Clifford           1
Ember              1
Heinrich           1
Kendall            1
Karl               1
Shiloh             1
Spencer            1
Chuq               1
Bones              1
Tuck               1
Wesley             1
Jareld             1
Snoopy             1
Edd                1
Richie             1
Bronte             1
Mason              1
Raphael            1
Danny              1
Scott              1
Chef               1
Glacier            1
Chesney            1
Spanky             1
Clarkus            1
Fwed               1
Rascal             1
Rufio              1
Chuck              1
Eriq               1
Aja                1
Beckham            1
Pupcasso           1
Autumn             1
Champ              1
Opie               1
Shawwn             1
Harlso             1
Moofasa            1
Poppy              1
Hanz               1
Todo               1
Lolo               1
Hazel              1
Staniel            1
Dunkin             1
Donny              1
Brandonald         1
Chadrick           1
Crawford           1
Robin              1
Bauer              1
Marlee             1
Fiji               1
Tripp              1
Geno               1
Sweet              1
Brandi             1
Taco               1
Sunshine           1
Molly              1
Gunner             1
Beya               1
Tayzie             1
Mutt               1
Daniel             1
Malikai            1
Ester              1
Saydee             1
Gustav             1
Mac                1
Biden              1
Lambeau            1
Furzey             1
Pinot              1
Lipton             1
Clybe              1
Huck               1
Georgie            1
Fillup             1
Julius             1
Toffee             1
Smiley             1
Puff               1
Jessiga            1
Augie              1
Gordon             1
Ed                 1
Iroh               1
Holly              1
Pilot              1
Venti              1
Petrick            1
Hamrick            1
Ito                1
Ole                1
Buddah             1
Bert               1
Jazzy              1
Charleson          1
Carter             1
Mojo               1
Shelby             1
Amy                1
Ralphson           1
Bayley             1
Tassy              1
Dwight             1
Rudy               1
Bowie              1
Cannon             1
Tess               1
Margo              1
Tanner             1
Aiden              1
Finnegus           1
Sandra             1
Bobby              1
Jameson            1
Devón              1
Zara               1
Rumpole            1
Sweets             1
Anna               1
Loomis             1
Zooey              1
Henry              1
Ike                1
Mark               1
Rey                1
Kuyu               1
Maude              1
Derby              1
Craig              1
Ricky              1
Ferg               1
Kanu               1
Ben                1
Pete               1
Wiggles            1
Rontu              1
Spark              1
Simba              1
Sully              1
Tino               1
Kaia               1
Lassie             1
Swagger            1
Olaf               1
Colin              1
Charl              1
Kathmandu          1
Dido               1
Bradley            1
Zoe                1
Trevith            1
Chase              1
Shikha             1
Jed                1
Ginger             1
Mimosa             1
Willie             1
Durg               1
Divine             1
Tater              1
Jim                1
Mollie             1
officially         1
Jerome             1
Alfy               1
Berb               1
Maks               1
Siba               1
his                1
Kawhi              1
Darla              1
Remus              1
Cleopatricia       1
Cecil              1
Alf                1
Flurpson           1
Amélie             1
Jo                 1
Lugan              1
Stewie             1
Rover              1
Apollo             1
Dudley             1
Burt               1
Vince              1
Ashleigh           1
Barry              1
Miguel             1
Nida               1
Blu                1
Glenn              1
Filup              1
Jonah              1
Adele              1
Stu                1
Tedders            1
Fletcher           1
Gin                1
Doobert            1
Kane               1
Maya               1
Florence           1
Mookie             1
Zeus               1
Strudel            1
Fido               1
Sprinkles          1
Pavlov             1
Blakely            1
Huxley             1
Callie             1
Tessa              1
Asher              1
Tobi               1
incredibly         1
Dutch              1
Rodman             1
Brudge             1
Marty              1
Kial               1
Peanut             1
Tango              1
Lili               1
Yoda               1
Billl              1
Timmy              1
Andy               1
Rambo              1
Goliath            1
Jeffri             1
Millie             1
Scruffers          1
Evy                1
Herb               1
Horace             1
Theo               1
Napolean           1
Buckley            1
Thor               1
Brat               1
Kenzie             1
Bodie              1
Blue               1
Joey               1
Vinscent           1
Katie              1
Eleanor            1
Rilo               1
Bookstore          1
Izzy               1
Comet              1
Kara               1
Taz                1
Sora               1
Rodney             1
Miley              1
Ambrose            1
Rolf               1
Shakespeare        1
Striker            1
Ralphie            1
Jeremy             1
Tebow              1
Joshwa             1
General            1
Obi                1
Dietrich           1
Ralphus            1
Jangle             1
Mingus             1
JD                 1
Berkeley           1
Butters            1
Kirk               1
Bloop              1
Mitch              1
Boots              1
Rorie              1
Reptar             1
Tycho              1
Rose               1
Barney             1
Marq               1
Duchess            1
Dixie              1
Perry              1
Lillie             1
Noah               1
Brandy             1
Longfellow         1
Benny              1
Noosh              1
Ziva               1
Dex                1
Kayla              1
Meatball           1
Chesterson         1
Rueben             1
Crouton            1
Gabby              1
Trip               1
Brady              1
Lenox              1
Howie              1
Reagan             1
Geoff              1
Ralphé             1
Socks              1
Cedrick            1
Jomathan           1
Lacy               1
Nugget             1
Brockly            1
Pubert             1
space              1
Humphrey           1
Lizzie             1
Jackie             1
Roscoe             1
Chevy              1
Flash              1
Fynn               1
Bobbay             1
Corey              1
Ridley             1
Rupert             1
Alexanderson       1
Grizzie            1
Koko               1
Pherb              1
Eugene             1
Stuart             1
Sid                1
Acro               1
Billy              1
Goose              1
Hall               1
Oreo               1
Diogi              1
Lucky              1
Bobble             1
Grey               1
Walker             1
Aldrick            1
Cupid              1
O                  1
Clarq              1
Kellogg            1
Kloey              1
Jimbo              1
Teddy              1
Creg               1
Willy              1
Vinnie             1
Jarvis             1
Anthony            1
Freddery           1
Strider            1
Carll              1
Cilantro           1
Torque             1
Hero               1
Bloo               1
Chloe              1
Christoper         1
Sundance           1
Dewey              1
Karma              1
Terrenth           1
Kona               1
Wishes             1
Pepper             1
by                 1
Tyrus              1
Snickers           1
Pippin             1
Arlo               1
Tove               1
Suki               1
Bobb               1
Dylan              1
Tommy              1
Genevieve          1
Pumpkin            1
Willow             1
Ronnie             1
Birf               1
Amber              1
Odin               1
Beemo              1
Ralf               1
Sonny              1
Shooter            1
Newt               1
Gerbald            1
Combo              1
Einstein           1
Pip                1
Karll              1
Mauve              1
Mary               1
Linus              1
Caryl              1
Bonaparte          1
Arnold             1
Stark              1
Bruiser            1
Mona               1
Ozzie              1
light              1
Michelangelope     1
Naphaniel          1
Coopson            1
Kollin             1
Obie               1
Norman             1
Griswold           1
Murphy             1
Winifred           1
Pawnd              1
Darrel             1
Monty              1
Ralpher            1
Stephanus          1
Lulu               1
Jazz               1
Andru              1
Ron                1
Jebberson          1
Edmund             1
Pancake            1
Jiminus            1
Aubie              1
Jeffrie            1
Brownie            1
Travis             1
Jay                1
River              1
Storkson           1
Crimson            1
Trigger            1
Leonidas           1
Milky              1
Carper             1
Ulysses            1
Dot                1
Banditt            1
Claude             1
Samsom             1
Vixen              1
Hermione           1
Tupawc             1
Sprout             1
Rooney             1
Zeek               1
Ruffles            1
Leonard            1
Grizzwald          1
Shnuggles          1
Patch              1
Blanket            1
BeBe               1
Covach             1
Randall            1
Baron              1
Brian              1
Banjo              1
Laika              1
Aqua               1
Crumpet            1
Binky              1
Kota               1
Gustaf             1
Julio              1
Snicku             1
Harnold            1
Gert               1
Rinna              1
Beebop             1
Philippe           1
Bilbo              1
Harry              1
Arlen              1
Josep              1
Orion              1
Emanuel            1
Blipson            1
Godi               1
Superpup           1
Kallie             1
Dotsy              1
Nico               1
Damon              1
Monkey             1
Skye               1
Sailer             1
Mosby              1
Kulet              1
Deacon             1
Livvie             1
Jockson            1
Ralphy             1
DayZ               1
Tito               1
Godzilla           1
Ivar               1
Grady              1
Sojourner          1
Skittles           1
Emmie              1
Keet               1
Sobe               1
Jersey             1
Jaycob             1
Jordy              1
Mack               1
Liam               1
Boston             1
Lucia              1
Erik               1
Stormy             1
Kevon              1
Willem             1
Dug                1
Ronduh             1
Fabio              1
Duddles            1
Kingsley           1
Farfle             1
Bertson            1
Nigel              1
Harrison           1
Kody               1
Maisey             1
Mairi              1
Bradlay            1
Grizz              1
Tonks              1
Stella             1
Enchilada          1
Ebby               1
Eazy               1
Jessifer           1
Chaz               1
Lance              1
Kramer             1
Lilli              1
Ralph              1
Cuddles            1
Harvey             1
Luther             1
Barclay            1
Yukon              1
Name: name, dtype: int64

Quality issue

Define:

Original tweets only. Rows with retweets and replay should be removed

code

In [36]:
# removing retweets rows
twitter_archive_df_clean = twitter_archive_df_clean[twitter_archive_df_clean.retweeted_status_id.isnull()]
# removing replays rows
twitter_archive_df_clean = twitter_archive_df_clean[twitter_archive_df_clean.in_reply_to_status_id.isnull()]

Test

In [37]:
twitter_archive_df_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2097 entries, 0 to 2355
Data columns (total 17 columns):
 #   Column                      Non-Null Count  Dtype         
---  ------                      --------------  -----         
 0   tweet_id                    2097 non-null   int64         
 1   in_reply_to_status_id       0 non-null      float64       
 2   in_reply_to_user_id         0 non-null      float64       
 3   timestamp                   2097 non-null   datetime64[ns]
 4   source                      2097 non-null   object        
 5   text                        2097 non-null   object        
 6   retweeted_status_id         0 non-null      float64       
 7   retweeted_status_user_id    0 non-null      float64       
 8   retweeted_status_timestamp  0 non-null      object        
 9   expanded_urls               2094 non-null   object        
 10  rating_numerator            2097 non-null   int64         
 11  rating_denominator          2097 non-null   int64         
 12  name                        1419 non-null   object        
 13  doggo                       2097 non-null   object        
 14  floofer                     2097 non-null   object        
 15  pupper                      2097 non-null   object        
 16  puppo                       2097 non-null   object        
dtypes: datetime64[ns](1), float64(4), int64(3), object(9)
memory usage: 294.9+ KB

Quality issue

Define:

Removing (in_reply_to_status_id, in_reply_to_user_id, retweeted_status_id, retweeted_status_user_id, retweeted_status_timestamp) related to replays and retweets, because only the original tweets to be kept.

code

In [38]:
# drop columns that related to retweets and replay
twitter_archive_df_clean = twitter_archive_df_clean.drop(columns=['in_reply_to_status_id','in_reply_to_user_id',
                                                                  'retweeted_status_id','retweeted_status_user_id',
                                                                  'retweeted_status_timestamp'])

Test

In [39]:
twitter_archive_df_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2097 entries, 0 to 2355
Data columns (total 12 columns):
 #   Column              Non-Null Count  Dtype         
---  ------              --------------  -----         
 0   tweet_id            2097 non-null   int64         
 1   timestamp           2097 non-null   datetime64[ns]
 2   source              2097 non-null   object        
 3   text                2097 non-null   object        
 4   expanded_urls       2094 non-null   object        
 5   rating_numerator    2097 non-null   int64         
 6   rating_denominator  2097 non-null   int64         
 7   name                1419 non-null   object        
 8   doggo               2097 non-null   object        
 9   floofer             2097 non-null   object        
 10  pupper              2097 non-null   object        
 11  puppo               2097 non-null   object        
dtypes: datetime64[ns](1), int64(3), object(8)
memory usage: 213.0+ KB

Quality issue

Define

some dogs appeare in more than one stage e.x. (doggo and floofer). Therefore, firstly getting rid of None with in the columns (doggo,floofer,pupper,puppo)

In [40]:
twitter_archive_df_clean.query('doggo == doggo').count()[8:12]
Out[40]:
doggo      2097
floofer    2097
pupper     2097
puppo      2097
dtype: int64
In [41]:
twitter_archive_df_clean.query('floofer == floofer').count()[8:12]
Out[41]:
doggo      2097
floofer    2097
pupper     2097
puppo      2097
dtype: int64
In [42]:
twitter_archive_df_clean.query('pupper == pupper').count()[8:12]
Out[42]:
doggo      2097
floofer    2097
pupper     2097
puppo      2097
dtype: int64
In [43]:
twitter_archive_df_clean.query('puppo == puppo').count()[8:12]
Out[43]:
doggo      2097
floofer    2097
pupper     2097
puppo      2097
dtype: int64

Code

In [44]:
# handle none
twitter_archive_df_clean.doggo.replace('None', '', inplace=True)
twitter_archive_df_clean.floofer.replace('None', '', inplace=True)
twitter_archive_df_clean.pupper.replace('None', '', inplace=True)
twitter_archive_df_clean.puppo.replace('None', '', inplace=True)

Test

In [47]:
twitter_archive_df_clean.query('doggo == doggo').sample(10)
Out[47]:
tweet_id timestamp source text expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
632 793962221541933056 2016-11-02 23:45:19 Twitter for iPhone This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 12 10 Maximus
1370 702321140488925184 2016-02-24 02:36:23 Twitter for iPhone Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1 12 10 NaN
1524 690597161306841088 2016-01-22 18:09:28 Twitter for iPhone This is Lolo. She's America af. Behind in science &amp; math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA https://twitter.com/dog_rates/status/690597161306841088/photo/1 11 10 Lolo
2301 667044094246576128 2015-11-18 18:17:59 Twitter for iPhone 12/10 gimme now https://t.co/QZAnwgnOMB https://twitter.com/dog_rates/status/667044094246576128/photo/1 12 10 NaN
1897 674737130913071104 2015-12-09 23:47:22 Twitter for iPhone Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 &amp; 4/10 https://t.co/KNfLnYPmYh https://twitter.com/dog_rates/status/674737130913071104/photo/1 10 10 Rufio pupper
1022 746542875601690625 2016-06-25 03:17:46 Vine - Make a Scene Here's a golden floofer helping with the groceries. Bed got in way. Still 11/10 helpful af (vid by @categoen) https://t.co/6ZRoZUWFmd https://vine.co/v/5uZYwqmuDeT 11 10 NaN floofer
1571 687704180304273409 2016-01-14 18:33:48 Twitter for iPhone Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt https://twitter.com/dog_rates/status/687704180304273409/photo/1 9 10 Blakely pupper
83 876537666061221889 2017-06-18 20:30:39 Twitter for iPhone I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu https://twitter.com/mpstowerham/status/876162994446753793 14 10 NaN
945 752660715232722944 2016-07-12 00:27:52 Twitter for iPhone Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 https://t.co/bWSgqnwSHr https://twitter.com/dog_rates/status/752660715232722944/photo/1,https://twitter.com/dog_rates/status/752660715232722944/photo/1 10 10 NaN doggo
1137 728046963732717569 2016-05-05 02:21:37 Twitter for iPhone This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ https://twitter.com/dog_rates/status/728046963732717569/photo/1 11 10 Raymond

Tidiness issue

define

doggo, floofer, pupper and puppo should be represented in one column as dog_stage

code

In [48]:
# merge into column
twitter_archive_df_clean['dog_stage'] = twitter_archive_df_clean.doggo + twitter_archive_df_clean.floofer + twitter_archive_df_clean.pupper + twitter_archive_df_clean.puppo

Test

In [49]:
twitter_archive_df_clean
Out[49]:
tweet_id timestamp source text expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo dog_stage
0 892420643555336193 2017-08-01 16:23:56 Twitter for iPhone This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU https://twitter.com/dog_rates/status/892420643555336193/photo/1 13 10 Phineas
1 892177421306343426 2017-08-01 00:17:27 Twitter for iPhone This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV https://twitter.com/dog_rates/status/892177421306343426/photo/1 13 10 Tilly
2 891815181378084864 2017-07-31 00:18:03 Twitter for iPhone This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB https://twitter.com/dog_rates/status/891815181378084864/photo/1 12 10 Archie
3 891689557279858688 2017-07-30 15:58:51 Twitter for iPhone This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ https://twitter.com/dog_rates/status/891689557279858688/photo/1 13 10 Darla
4 891327558926688256 2017-07-29 16:00:24 Twitter for iPhone This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 12 10 Franklin
5 891087950875897856 2017-07-29 00:08:17 Twitter for iPhone Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh https://twitter.com/dog_rates/status/891087950875897856/photo/1 13 10 NaN
6 890971913173991426 2017-07-28 16:27:12 Twitter for iPhone Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl https://gofundme.com/ydvmve-surgery-for-jax,https://twitter.com/dog_rates/status/890971913173991426/photo/1 13 10 Jax
7 890729181411237888 2017-07-28 00:22:40 Twitter for iPhone When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq https://twitter.com/dog_rates/status/890729181411237888/photo/1,https://twitter.com/dog_rates/status/890729181411237888/photo/1 13 10 NaN
8 890609185150312448 2017-07-27 16:25:51 Twitter for iPhone This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b https://twitter.com/dog_rates/status/890609185150312448/photo/1 13 10 Zoey
9 890240255349198849 2017-07-26 15:59:51 Twitter for iPhone This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A https://twitter.com/dog_rates/status/890240255349198849/photo/1 14 10 Cassie doggo doggo
10 890006608113172480 2017-07-26 00:31:25 Twitter for iPhone This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme https://twitter.com/dog_rates/status/890006608113172480/photo/1,https://twitter.com/dog_rates/status/890006608113172480/photo/1 13 10 Koda
11 889880896479866881 2017-07-25 16:11:53 Twitter for iPhone This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g https://twitter.com/dog_rates/status/889880896479866881/photo/1 13 10 Bruno
12 889665388333682689 2017-07-25 01:55:32 Twitter for iPhone Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm https://twitter.com/dog_rates/status/889665388333682689/photo/1 13 10 NaN puppo puppo
13 889638837579907072 2017-07-25 00:10:02 Twitter for iPhone This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR https://twitter.com/dog_rates/status/889638837579907072/photo/1,https://twitter.com/dog_rates/status/889638837579907072/photo/1 12 10 Ted
14 889531135344209921 2017-07-24 17:02:04 Twitter for iPhone This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq https://twitter.com/dog_rates/status/889531135344209921/photo/1 13 10 Stuart puppo puppo
15 889278841981685760 2017-07-24 00:19:32 Twitter for iPhone This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb https://twitter.com/dog_rates/status/889278841981685760/video/1 13 10 Oliver
16 888917238123831296 2017-07-23 00:22:39 Twitter for iPhone This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN https://twitter.com/dog_rates/status/888917238123831296/photo/1 12 10 Jim
17 888804989199671297 2017-07-22 16:56:37 Twitter for iPhone This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K https://twitter.com/dog_rates/status/888804989199671297/photo/1,https://twitter.com/dog_rates/status/888804989199671297/photo/1 13 10 Zeke
18 888554962724278272 2017-07-22 00:23:06 Twitter for iPhone This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1 13 10 Ralphus
20 888078434458587136 2017-07-20 16:49:33 Twitter for iPhone This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX https://twitter.com/dog_rates/status/888078434458587136/photo/1,https://twitter.com/dog_rates/status/888078434458587136/photo/1 12 10 Gerald
21 887705289381826560 2017-07-19 16:06:48 Twitter for iPhone This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64 https://twitter.com/dog_rates/status/887705289381826560/photo/1 13 10 Jeffrey
22 887517139158093824 2017-07-19 03:39:09 Twitter for iPhone I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba https://twitter.com/dog_rates/status/887517139158093824/video/1 14 10 such
23 887473957103951883 2017-07-19 00:47:34 Twitter for iPhone This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 13 10 Canela
24 887343217045368832 2017-07-18 16:08:03 Twitter for iPhone You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV https://twitter.com/dog_rates/status/887343217045368832/video/1 13 10 NaN
25 887101392804085760 2017-07-18 00:07:08 Twitter for iPhone This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp https://twitter.com/dog_rates/status/887101392804085760/photo/1 12 10 NaN
26 886983233522544640 2017-07-17 16:17:36 Twitter for iPhone This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT https://twitter.com/dog_rates/status/886983233522544640/photo/1,https://twitter.com/dog_rates/status/886983233522544640/photo/1 13 10 Maya
27 886736880519319552 2017-07-16 23:58:41 Twitter for iPhone This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b https://www.gofundme.com/mingusneedsus,https://twitter.com/dog_rates/status/886736880519319552/photo/1,https://twitter.com/dog_rates/status/886736880519319552/photo/1 13 10 Mingus
28 886680336477933568 2017-07-16 20:14:00 Twitter for iPhone This is Derek. He's late for a dog meeting. 13/10 pet...al to the metal https://t.co/BCoWue0abA https://twitter.com/dog_rates/status/886680336477933568/photo/1 13 10 Derek
29 886366144734445568 2017-07-15 23:25:31 Twitter for iPhone This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox https://twitter.com/dog_rates/status/886366144734445568/photo/1,https://twitter.com/dog_rates/status/886366144734445568/photo/1 12 10 Roscoe pupper pupper
31 886258384151887873 2017-07-15 16:17:19 Twitter for iPhone This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O https://twitter.com/dog_rates/status/886258384151887873/photo/1 13 10 Waffles
33 885984800019947520 2017-07-14 22:10:11 Twitter for iPhone Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1 https://twitter.com/dog_rates/status/885984800019947520/photo/1 12 10 Jimbo
34 885528943205470208 2017-07-13 15:58:47 Twitter for iPhone This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF https://twitter.com/dog_rates/status/885528943205470208/photo/1 13 10 Maisey
35 885518971528720385 2017-07-13 15:19:09 Twitter for iPhone I have a new hero and his name is Howard. 14/10 https://t.co/gzLHboL7Sk https://twitter.com/4bonds2carbon/status/885517367337512960 14 10 NaN
37 885167619883638784 2017-07-12 16:03:00 Twitter for iPhone Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 https://t.co/44ItaMubBf https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1 13 10 NaN
38 884925521741709313 2017-07-12 00:01:00 Twitter for iPhone This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa https://twitter.com/dog_rates/status/884925521741709313/photo/1 12 10 Earl
39 884876753390489601 2017-07-11 20:47:12 Twitter for iPhone This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1 13 10 Lola
40 884562892145688576 2017-07-11 00:00:02 Twitter for iPhone This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5 https://twitter.com/dog_rates/status/884562892145688576/photo/1 13 10 Kevin
41 884441805382717440 2017-07-10 15:58:53 Twitter for iPhone I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC https://twitter.com/dog_rates/status/884441805382717440/photo/1 14 10 NaN
42 884247878851493888 2017-07-10 03:08:17 Twitter for iPhone OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LITTLE BARKOUR HE'S SUPER SORRY 13/10 WOULD FORGIVE IMMEDIATE https://t.co/uF3pQ8Wubj https://twitter.com/kaijohnson_19/status/883965650754039809 13 10 NaN
43 884162670584377345 2017-07-09 21:29:42 Twitter for iPhone Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ https://twitter.com/dog_rates/status/884162670584377345/photo/1 12 10 Yogi doggo doggo
44 883838122936631299 2017-07-09 00:00:04 Twitter for iPhone This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY https://twitter.com/dog_rates/status/883838122936631299/photo/1 12 10 Noah
45 883482846933004288 2017-07-08 00:28:19 Twitter for iPhone This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 https://twitter.com/dog_rates/status/883482846933004288/photo/1,https://twitter.com/dog_rates/status/883482846933004288/photo/1 5 10 Bella
46 883360690899218434 2017-07-07 16:22:55 Twitter for iPhone Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP https://twitter.com/dog_rates/status/883360690899218434/photo/1 13 10 Grizzwald floofer floofer
47 883117836046086144 2017-07-07 00:17:54 Twitter for iPhone Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E https://twitter.com/dog_rates/status/883117836046086144/photo/1,https://twitter.com/dog_rates/status/883117836046086144/photo/1 13 10 NaN
48 882992080364220416 2017-07-06 15:58:11 Twitter for iPhone This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj https://twitter.com/dog_rates/status/882992080364220416/photo/1,https://twitter.com/dog_rates/status/882992080364220416/photo/1 13 10 Rusty
49 882762694511734784 2017-07-06 00:46:41 Twitter for iPhone This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu https://twitter.com/dog_rates/status/882762694511734784/photo/1 12 10 Gus pupper pupper
50 882627270321602560 2017-07-05 15:48:34 Twitter for iPhone This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 https://twitter.com/dog_rates/status/882627270321602560/photo/1 13 10 Stanley
51 882268110199369728 2017-07-04 16:01:23 Twitter for iPhone This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1 13 10 Alfy
52 882045870035918850 2017-07-04 01:18:17 Twitter for iPhone This is Koko. Her owner, inspired by Barney, recently built a cart for her to use during walks if she got tired. 13/10 rest easy Koko https://t.co/zeDpnsKX7w https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1 13 10 Koko
53 881906580714921986 2017-07-03 16:04:48 Twitter for iPhone This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ https://twitter.com/dog_rates/status/881906580714921986/photo/1 12 10 Rey
54 881666595344535552 2017-07-03 00:11:11 Twitter for iPhone This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s https://twitter.com/dog_rates/status/881666595344535552/photo/1 13 10 Gary
56 881536004380872706 2017-07-02 15:32:16 Twitter for iPhone Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF https://twitter.com/dog_rates/status/881536004380872706/video/1 14 10 NaN pupper pupper
57 881268444196462592 2017-07-01 21:49:04 Twitter for iPhone Meet Elliot. He's a Canadian Forrest Pup. Unusual number of antlers for a dog. Sneaky tongue slip to celebrate #Canada150. 12/10 would pet https://t.co/cgwJwowTMC https://twitter.com/dog_rates/status/881268444196462592/photo/1 12 10 Elliot
58 880935762899988482 2017-06-30 23:47:07 Twitter for iPhone This is Louis. He's crossing. It's a big deal. 13/10 h*ckin breathtaking https://t.co/D0wb1GlKAt https://twitter.com/dog_rates/status/880935762899988482/photo/1 13 10 Louis
59 880872448815771648 2017-06-30 19:35:32 Twitter for iPhone Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf https://twitter.com/dog_rates/status/880872448815771648/photo/1 12 10 NaN
60 880465832366813184 2017-06-29 16:39:47 Twitter for iPhone This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1 12 10 Bella
61 880221127280381952 2017-06-29 00:27:25 Twitter for iPhone Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK https://twitter.com/dog_rates/status/880221127280381952/photo/1,https://twitter.com/dog_rates/status/880221127280381952/photo/1 12 10 Jesse
62 880095782870896641 2017-06-28 16:09:20 Twitter for iPhone Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4 https://twitter.com/dog_rates/status/880095782870896641/photo/1 11 10 NaN
63 879862464715927552 2017-06-28 00:42:13 Twitter for iPhone This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9 https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1 13 10 Romeo
65 879492040517615616 2017-06-27 00:10:17 Twitter for iPhone This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8 https://twitter.com/dog_rates/status/879492040517615616/photo/1 12 10 Bailey
66 879415818425184262 2017-06-26 19:07:24 Twitter for iPhone This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY https://twitter.com/dog_rates/status/879415818425184262/video/1 13 10 Duddles
67 879376492567855104 2017-06-26 16:31:08 Twitter for iPhone This is Jack AKA Stephen Furry. You're not scoring on him. Unless he slips down the slide. 12/10 would happily get blocked by https://t.co/0gOi601EAa https://twitter.com/dog_rates/status/879376492567855104/photo/1 12 10 Jack
69 879050749262655488 2017-06-25 18:56:45 Twitter for iPhone This is Steven. He has trouble relating to other dogs. Quite shy. Neck longer than average. Tropical probably. 11/10 would still pet https://t.co/2mJCDEJWdD https://twitter.com/dog_rates/status/879050749262655488/photo/1 11 10 Steven
70 879008229531029506 2017-06-25 16:07:47 Twitter for iPhone This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN https://twitter.com/dog_rates/status/879008229531029506/photo/1 13 10 Beau
71 878776093423087618 2017-06-25 00:45:22 Twitter for iPhone This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS https://twitter.com/dog_rates/status/878776093423087618/photo/1,https://twitter.com/dog_rates/status/878776093423087618/photo/1 13 10 Snoopy puppo puppo
72 878604707211726852 2017-06-24 13:24:20 Twitter for iPhone Martha is stunning how h*ckin dare you. 13/10 https://t.co/9uABQXgjwa https://twitter.com/bbcworld/status/878599868507402241 13 10 NaN
75 878281511006478336 2017-06-23 16:00:04 Twitter for iPhone Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6 https://www.gofundme.com/3yd6y1c,https://twitter.com/dog_rates/status/878281511006478336/photo/1 13 10 Shadow
76 878057613040115712 2017-06-23 01:10:23 Twitter for iPhone This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe https://twitter.com/dog_rates/status/878057613040115712/photo/1,https://twitter.com/dog_rates/status/878057613040115712/photo/1 14 10 Emmy
77 877736472329191424 2017-06-22 03:54:17 Twitter for iPhone This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r https://twitter.com/dog_rates/status/877736472329191424/photo/1,https://twitter.com/dog_rates/status/877736472329191424/photo/1 13 10 Aja
79 877556246731214848 2017-06-21 15:58:08 Twitter for iPhone This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP https://twitter.com/dog_rates/status/877556246731214848/photo/1 12 10 Penny
80 877316821321428993 2017-06-21 00:06:44 Twitter for iPhone Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc https://twitter.com/dog_rates/status/877316821321428993/photo/1,https://twitter.com/dog_rates/status/877316821321428993/photo/1 13 10 Dante
81 877201837425926144 2017-06-20 16:29:50 Twitter for iPhone This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y https://twitter.com/dog_rates/status/877201837425926144/photo/1,https://twitter.com/dog_rates/status/877201837425926144/photo/1 12 10 Nelly
82 876838120628539392 2017-06-19 16:24:33 Twitter for iPhone This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6 https://twitter.com/dog_rates/status/876838120628539392/photo/1,https://twitter.com/dog_rates/status/876838120628539392/photo/1 12 10 Ginger pupper pupper
83 876537666061221889 2017-06-18 20:30:39 Twitter for iPhone I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu https://twitter.com/mpstowerham/status/876162994446753793 14 10 NaN
84 876484053909872640 2017-06-18 16:57:37 Twitter for iPhone This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs https://twitter.com/dog_rates/status/876484053909872640/photo/1 13 10 Benedict
85 876120275196170240 2017-06-17 16:52:05 Twitter for iPhone Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek https://twitter.com/dog_rates/status/876120275196170240/photo/1 13 10 Venti
86 875747767867523072 2017-06-16 16:11:53 Twitter for iPhone This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN https://twitter.com/dog_rates/status/875747767867523072/photo/1 13 10 Goose
87 875144289856114688 2017-06-15 00:13:52 Twitter for iPhone Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj https://twitter.com/dog_rates/status/875144289856114688/video/1 13 10 Nugget
88 875097192612077568 2017-06-14 21:06:43 Twitter for iPhone You'll get your package when that precious man is done appreciating the pups. 13/10 for everyone https://t.co/PFp4MghzBW https://twitter.com/drboondoc/status/874413398133547008 13 10 NaN
89 875021211251597312 2017-06-14 16:04:48 Twitter for iPhone Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW https://twitter.com/dog_rates/status/875021211251597312/photo/1,https://twitter.com/dog_rates/status/875021211251597312/photo/1 12 10 NaN
90 874680097055178752 2017-06-13 17:29:20 Twitter for iPhone Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD https://twitter.com/dog_rates/status/874680097055178752/photo/1 12 10 Cash
92 874296783580663808 2017-06-12 16:06:11 Twitter for iPhone This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm https://twitter.com/dog_rates/status/874296783580663808/photo/1 13 10 Jed pupper pupper
93 874057562936811520 2017-06-12 00:15:36 Twitter for iPhone I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2 https://twitter.com/dog_rates/status/874057562936811520/photo/1 12 10 NaN
94 874012996292530176 2017-06-11 21:18:31 Twitter for iPhone This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V https://twitter.com/dog_rates/status/874012996292530176/photo/1,https://twitter.com/dog_rates/status/874012996292530176/photo/1 13 10 Sebastian puppo puppo
96 873580283840344065 2017-06-10 16:39:04 Twitter for iPhone We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n https://twitter.com/dog_rates/status/873580283840344065/photo/1 13 10 NaN
98 873213775632977920 2017-06-09 16:22:42 Twitter for iPhone This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ https://www.gofundme.com/help-my-baby-sierra-get-better,https://twitter.com/dog_rates/status/873213775632977920/photo/1,https://twitter.com/dog_rates/status/873213775632977920/photo/1 12 10 Sierra pupper pupper
99 872967104147763200 2017-06-09 00:02:31 Twitter for iPhone Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR https://twitter.com/dog_rates/status/872967104147763200/photo/1,https://twitter.com/dog_rates/status/872967104147763200/photo/1 12 10 NaN doggo doggo
100 872820683541237760 2017-06-08 14:20:41 Twitter for iPhone Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5 https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1 13 10 NaN
102 872620804844003328 2017-06-08 01:06:27 Twitter for iPhone This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9 https://twitter.com/dog_rates/status/872620804844003328/photo/1 13 10 Monkey
103 872486979161796608 2017-06-07 16:14:40 Twitter for iPhone We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ https://twitter.com/dog_rates/status/872486979161796608/photo/1 12 10 NaN
104 872261713294495745 2017-06-07 01:19:32 Twitter for iPhone This is Harry. His ears are activated one at a time. Incredibly rare to witness in person. Very special moment here. 13/10 blessed as h*ck https://t.co/ejHvGDfWoa https://twitter.com/dog_rates/status/872261713294495745/photo/1,https://twitter.com/dog_rates/status/872261713294495745/photo/1 13 10 Harry
105 872122724285648897 2017-06-06 16:07:15 Twitter for iPhone This is Kody. He's a baller. Wishes he was a little bit taller. Double dribbles often. Still 12/10 would happily get dunked on https://t.co/PKSpmiefwN https://twitter.com/dog_rates/status/872122724285648897/photo/1,https://twitter.com/dog_rates/status/872122724285648897/photo/1 12 10 Kody
106 871879754684805121 2017-06-06 00:01:46 Twitter for iPhone Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w https://twitter.com/dog_rates/status/871879754684805121/photo/1,https://twitter.com/dog_rates/status/871879754684805121/photo/1 13 10 Lassie
107 871762521631449091 2017-06-05 16:15:56 Twitter for iPhone This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1 12 10 Rover pupper pupper
108 871515927908634625 2017-06-04 23:56:03 Twitter for iPhone This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw https://twitter.com/dog_rates/status/871515927908634625/photo/1,https://twitter.com/dog_rates/status/871515927908634625/photo/1 12 10 Napolean doggo doggo
110 871102520638267392 2017-06-03 20:33:19 Twitter for iPhone Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH https://twitter.com/animalcog/status/871075758080503809 14 10 NaN doggo doggo
111 871032628920680449 2017-06-03 15:55:36 Twitter for iPhone This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo https://twitter.com/dog_rates/status/871032628920680449/photo/1 13 10 Boomer
112 870804317367881728 2017-06-03 00:48:22 Twitter for iPhone Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 https://t.co/GCD1JccCyi https://twitter.com/dog_rates/status/870804317367881728/photo/1 11 10 NaN
114 870656317836468226 2017-06-02 15:00:16 Twitter for iPhone This is Cody. He zoomed too aggressively and tore his ACL. Happens to the best of us. Still 13/10\n\nHelp Cody here: https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4 https://www.gofundme.com/help-fix-codys-torn-acl,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1 13 10 Cody
115 870374049280663552 2017-06-01 20:18:38 Twitter for iPhone This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm https://twitter.com/dog_rates/status/870374049280663552/photo/1 13 10 Zoey
116 870308999962521604 2017-06-01 16:00:09 Twitter for iPhone This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9 https://twitter.com/dog_rates/status/870308999962521604/photo/1,https://twitter.com/dog_rates/status/870308999962521604/photo/1 13 10 Rumble
117 870063196459192321 2017-05-31 23:43:25 Twitter for iPhone Meet Clifford. He's quite large. Also red. Good w kids. Somehow never steps on them. Massive poops very inconvenient. Still 14/10 would ride https://t.co/apVOyDgOju https://twitter.com/dog_rates/status/870063196459192321/photo/1,https://twitter.com/dog_rates/status/870063196459192321/photo/1 14 10 Clifford
119 869772420881756160 2017-05-31 04:27:59 Twitter for iPhone This is Dewey (pronounced "covfefe"). He's having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D https://twitter.com/dog_rates/status/869772420881756160/photo/1 13 10 Dewey
120 869702957897576449 2017-05-30 23:51:58 Twitter for iPhone Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq https://twitter.com/dog_rates/status/869702957897576449/photo/1 13 10 Stanley
121 869596645499047938 2017-05-30 16:49:31 Twitter for iPhone This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo https://twitter.com/dog_rates/status/869596645499047938/photo/1,https://twitter.com/dog_rates/status/869596645499047938/photo/1 12 10 Scout doggo doggo
122 869227993411051520 2017-05-29 16:24:37 Twitter for iPhone This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ https://twitter.com/dog_rates/status/869227993411051520/photo/1 13 10 Gizmo
123 868880397819494401 2017-05-28 17:23:24 Twitter for iPhone This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF https://twitter.com/dog_rates/status/868880397819494401/photo/1 14 10 Walter
125 868622495443632128 2017-05-28 00:18:35 Twitter for iPhone Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM https://twitter.com/dog_rates/status/868622495443632128/photo/1 13 10 NaN
126 868552278524837888 2017-05-27 19:39:34 Twitter for iPhone Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi https://www.gofundme.com/3ti3nps,https://twitter.com/dog_rates/status/868552278524837888/photo/1,https://twitter.com/dog_rates/status/868552278524837888/photo/1 12 10 Cooper
127 867900495410671616 2017-05-26 00:29:37 Twitter for iPhone Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ https://twitter.com/dog_rates/status/867900495410671616/photo/1 12 10 NaN
128 867774946302451713 2017-05-25 16:10:44 Twitter for iPhone Meet Harold. He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa https://twitter.com/dog_rates/status/867774946302451713/photo/1,https://twitter.com/dog_rates/status/867774946302451713/photo/1 13 10 Harold
129 867421006826221569 2017-05-24 16:44:18 Twitter for iPhone This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go https://twitter.com/dog_rates/status/867421006826221569/photo/1 12 10 Shikha puppo puppo
131 867051520902168576 2017-05-23 16:16:06 Twitter for iPhone Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ https://twitter.com/dog_rates/status/867051520902168576/photo/1 13 10 NaN
133 866720684873056260 2017-05-22 18:21:28 Twitter for iPhone He was providing for his family 13/10 how dare you https://t.co/Q8mVwWN3f4 https://twitter.com/nbcnews/status/866458718883467265 13 10 NaN
134 866686824827068416 2017-05-22 16:06:55 Twitter for iPhone This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z https://twitter.com/dog_rates/status/866686824827068416/photo/1,https://twitter.com/dog_rates/status/866686824827068416/photo/1 12 10 Lili
135 866450705531457537 2017-05-22 00:28:40 Twitter for iPhone This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr https://twitter.com/dog_rates/status/866450705531457537/photo/1,https://twitter.com/dog_rates/status/866450705531457537/photo/1 13 10 Jamesy pupper pupper
136 866334964761202691 2017-05-21 16:48:45 Twitter for iPhone This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c https://twitter.com/dog_rates/status/866334964761202691/photo/1,https://twitter.com/dog_rates/status/866334964761202691/photo/1 12 10 Coco
138 865718153858494464 2017-05-19 23:57:46 Twitter for iPhone Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg https://twitter.com/dog_rates/status/865718153858494464/photo/1 13 10 Boomer
139 865359393868664832 2017-05-19 00:12:11 Twitter for iPhone This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc https://twitter.com/dog_rates/status/865359393868664832/photo/1,https://twitter.com/dog_rates/status/865359393868664832/photo/1 13 10 Sammy
140 865006731092295680 2017-05-18 00:50:50 Twitter for iPhone This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o https://twitter.com/dog_rates/status/865006731092295680/photo/1 13 10 Nelly
141 864873206498414592 2017-05-17 16:00:15 Twitter for iPhone We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 https://t.co/wr3xsjeCIR https://twitter.com/dog_rates/status/864873206498414592/photo/1,https://twitter.com/dog_rates/status/864873206498414592/photo/1 14 10 NaN
142 864279568663928832 2017-05-16 00:41:21 Twitter for iPhone This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck https://twitter.com/dog_rates/status/864279568663928832/photo/1,https://twitter.com/dog_rates/status/864279568663928832/photo/1 12 10 Meatball
143 864197398364647424 2017-05-15 19:14:50 Twitter for iPhone This is Paisley. She ate a flower just to prove she could. Savage af. 13/10 would pet so well https://t.co/cPq9fYvkzr https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1 13 10 Paisley
144 863907417377173506 2017-05-15 00:02:33 Twitter for iPhone This is Albus. He's quite impressive at hide and seek. Knows he's been found this time. 13/10 usually elusive as h*ck https://t.co/ht47njyZ64 https://twitter.com/dog_rates/status/863907417377173506/photo/1,https://twitter.com/dog_rates/status/863907417377173506/photo/1 13 10 Albus
145 863553081350529029 2017-05-14 00:34:33 Twitter for iPhone This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop https://twitter.com/dog_rates/status/863553081350529029/video/1 13 10 Neptune
147 863432100342583297 2017-05-13 16:33:49 Twitter for iPhone This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H https://twitter.com/dog_rates/status/863432100342583297/photo/1 12 10 Belle
150 863062471531167744 2017-05-12 16:05:02 Twitter for iPhone Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt https://www.gofundme.com/helpquinny,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1 13 10 Quinn
151 862831371563274240 2017-05-12 00:46:44 Twitter for iPhone This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE https://twitter.com/dog_rates/status/862831371563274240/photo/1,https://twitter.com/dog_rates/status/862831371563274240/photo/1 13 10 Zooey
152 862722525377298433 2017-05-11 17:34:13 Twitter for iPhone This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2 https://twitter.com/dog_rates/status/862722525377298433/photo/1 11 10 Dave
153 862457590147678208 2017-05-11 00:01:27 Twitter for iPhone This is Jersey. He likes to watch movies, but only if you watch with him. Enjoys horror films like The Bababork and H*ckraiser. 13/10 https://t.co/jvSNASweNb https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1 13 10 Jersey
154 862096992088072192 2017-05-10 00:08:34 Twitter for iPhone We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd https://twitter.com/dog_rates/status/862096992088072192/photo/1,https://twitter.com/dog_rates/status/862096992088072192/photo/1 13 10 NaN
156 861383897657036800 2017-05-08 00:54:59 Twitter for iPhone This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1 https://twitter.com/dog_rates/status/861383897657036800/photo/1 13 10 Hobbes
157 861288531465048066 2017-05-07 18:36:02 Twitter for iPhone HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 https://t.co/SqKJPwbQ2g https://twitter.com/dog_rates/status/861288531465048066/video/1 13 10 NaN
158 861005113778896900 2017-05-06 23:49:50 Twitter for iPhone This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6 https://twitter.com/dog_rates/status/861005113778896900/photo/1 12 10 Burt
161 860563773140209665 2017-05-05 18:36:06 Twitter for iPhone Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt https://www.gofundme.com/help-lorenzo-beat-cancer,https://twitter.com/dog_rates/status/860563773140209665/photo/1,https://twitter.com/dog_rates/status/860563773140209665/photo/1 13 10 Lorenzo
162 860524505164394496 2017-05-05 16:00:04 Twitter for iPhone This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I https://twitter.com/dog_rates/status/860524505164394496/photo/1 13 10 Carl
163 860276583193509888 2017-05-04 23:34:55 Twitter for iPhone This is Jordy. He likes to go on adventures and watch the small scaly underwater dogs with fins pass him by. 12/10 peaceful as h*ck https://t.co/xJo6S2sfsN https://twitter.com/dog_rates/status/860276583193509888/photo/1 12 10 Jordy
164 860184849394610176 2017-05-04 17:30:24 Twitter for iPhone Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try https://t.co/upRYxG4KbG https://twitter.com/dog_rates/status/860184849394610176/photo/1 14 10 NaN
166 859924526012018688 2017-05-04 00:15:58 Twitter for iPhone Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29 https://twitter.com/dog_rates/status/859924526012018688/photo/1 12 10 Milky
167 859851578198683649 2017-05-03 19:26:06 Twitter for iPhone Meet Trooper. He picks pup recyclables that have blown out of bins in the neighborhood and puts them back. 13/10 environmentally savvy af https://t.co/BqSttrTuIl https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1 13 10 Trooper
168 859607811541651456 2017-05-03 03:17:27 Twitter for iPhone Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0 https://twitter.com/dog_rates/status/859607811541651456/photo/1 13 10 NaN puppo puppo
169 859196978902773760 2017-05-02 00:04:57 Twitter for iPhone We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 https://twitter.com/dog_rates/status/859196978902773760/video/1 12 10 quite
170 859074603037188101 2017-05-01 15:58:40 Twitter for iPhone Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet https://t.co/gEsymGTXCT https://twitter.com/dog_rates/status/859074603037188101/photo/1 13 10 NaN
172 858843525470990336 2017-05-01 00:40:27 Twitter for iPhone I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq https://twitter.com/dog_rates/status/858843525470990336/photo/1 13 10 NaN doggo doggo
173 858471635011153920 2017-04-30 00:02:42 Twitter for iPhone This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy https://twitter.com/dog_rates/status/858471635011153920/photo/1 13 10 Sophie
174 858107933456039936 2017-04-28 23:57:28 Twitter for iPhone This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF https://twitter.com/dog_rates/status/858107933456039936/photo/1 12 10 Wyatt
175 857989990357356544 2017-04-28 16:08:49 Twitter for iPhone This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X https://twitter.com/dog_rates/status/857989990357356544/photo/1 12 10 Rosie
176 857746408056729600 2017-04-28 00:00:54 Twitter for iPhone Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1 13 10 Thor
177 857393404942143489 2017-04-27 00:38:11 Twitter for iPhone Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV https://www.gofundme.com/meeko-needs-heart-surgery,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1 13 10 NaN
178 857263160327368704 2017-04-26 16:00:39 Twitter for iPhone This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC https://twitter.com/dog_rates/status/857263160327368704/photo/1 13 10 Oscar
181 857029823797047296 2017-04-26 00:33:27 Twitter for iPhone This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu https://twitter.com/dog_rates/status/857029823797047296/photo/1,https://twitter.com/dog_rates/status/857029823797047296/photo/1 12 10 Zeke
183 856543823941562368 2017-04-24 16:22:16 Twitter for iPhone This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO https://twitter.com/dog_rates/status/856543823941562368/photo/1 12 10 Callie
187 856282028240666624 2017-04-23 23:01:59 Twitter for iPhone This is Cermet, Paesh, and Morple. They are absolute h*ckin superstars. Watered every day so they can grow. 14/10 for all https://t.co/GUefqUmZv8 https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1 14 10 Cermet
190 855857698524602368 2017-04-22 18:55:51 Twitter for iPhone HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS AMAZING HI HUMAN I LOVE YOU AS WELL" 13/10 https://t.co/sb73bV5Y7S https://twitter.com/perfy/status/855857318168150016 13 10 NaN
191 855851453814013952 2017-04-22 18:31:02 Twitter for iPhone Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel https://twitter.com/dog_rates/status/855851453814013952/photo/1 13 10 NaN doggo puppo doggopuppo
192 855818117272018944 2017-04-22 16:18:34 Twitter for iPhone I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUST WANTS TO SAY HI AND MAYBE A NOGGIN PAT SHOW SOME RESPECT 13/10 https://t.co/5BEjzT2Tth https://twitter.com/markhalperin/status/855656431005061120 13 10 NaN
193 855459453768019968 2017-04-21 16:33:22 Twitter for iPhone Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x https://twitter.com/dog_rates/status/855459453768019968/photo/1,https://twitter.com/dog_rates/status/855459453768019968/photo/1 12 10 quite
196 854732716440526848 2017-04-19 16:25:34 Twitter for iPhone This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1 12 10 Marlee
197 854482394044301312 2017-04-18 23:50:52 Twitter for iPhone This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5 https://twitter.com/dog_rates/status/854482394044301312/photo/1 13 10 Arya
198 854365224396361728 2017-04-18 16:05:17 Twitter for iPhone This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6 https://twitter.com/dog_rates/status/854365224396361728/photo/1,https://twitter.com/dog_rates/status/854365224396361728/photo/1 13 10 Einstein
199 854120357044912130 2017-04-17 23:52:16 Twitter for iPhone Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend https://t.co/oBL7LEJEzR https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1 14 10 NaN pupper pupper
200 854010172552949760 2017-04-17 16:34:26 Twitter for iPhone At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk https://twitter.com/dog_rates/status/854010172552949760/photo/1,https://twitter.com/dog_rates/status/854010172552949760/photo/1 11 10 NaN doggo floofer doggofloofer
201 853760880890318849 2017-04-17 00:03:50 Twitter for iPhone Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x https://twitter.com/dog_rates/status/853760880890318849/photo/1 12 10 Alice
202 853639147608842240 2017-04-16 16:00:07 Twitter for iPhone A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe https://twitter.com/dog_rates/status/853639147608842240/photo/1,https://twitter.com/dog_rates/status/853639147608842240/photo/1 13 10 NaN
203 853299958564483072 2017-04-15 17:32:18 Twitter for iPhone This is Rumpole. He'll be your Uber driver this evening. Won't start driving until you buckle pup. 13/10 h*ckin safe good boy https://t.co/EX9Z3EXlVP https://twitter.com/dog_rates/status/853299958564483072/photo/1,https://twitter.com/dog_rates/status/853299958564483072/photo/1 13 10 Rumpole
205 852912242202992640 2017-04-14 15:51:39 Twitter for iPhone Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U https://www.gofundme.com/bennys-medical-bills,https://twitter.com/dog_rates/status/852912242202992640/photo/1,https://twitter.com/dog_rates/status/852912242202992640/photo/1 12 10 Benny
206 852672615818899456 2017-04-13 23:59:28 Twitter for iPhone This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW https://twitter.com/dog_rates/status/852672615818899456/photo/1 12 10 Aspen
207 852553447878664193 2017-04-13 16:05:56 Twitter for iPhone This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC https://twitter.com/dog_rates/status/852553447878664193/photo/1,https://twitter.com/dog_rates/status/852553447878664193/photo/1 13 10 Jarod
208 852311364735569921 2017-04-13 00:03:59 Twitter for iPhone This is Wiggles. She would like you to spot her. Probably won't need your help but just in case. 13/10 powerful as h*ck https://t.co/2d370P0OEg https://twitter.com/dog_rates/status/852311364735569921/photo/1 13 10 Wiggles
209 852226086759018497 2017-04-12 18:25:07 Twitter Web Client Meet General. He wasn't content with the quality of his room. Requested to pupgrade, but was ignored. 14/10 look who just lost a customer https://t.co/NP5JW8LnmW https://twitter.com/dog_rates/status/852226086759018497/video/1 14 10 General
210 852189679701164033 2017-04-12 16:00:27 Twitter for iPhone This is Sailor. He has collected the best dirt in the area. As any good boy would. Under the impression you know what to do next. 12/10 https://t.co/jrFzScKWEG https://twitter.com/dog_rates/status/852189679701164033/photo/1 12 10 Sailor
213 851591660324737024 2017-04-11 00:24:08 Twitter for iPhone Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS https://twitter.com/dog_rates/status/851591660324737024/photo/1 11 10 NaN
214 851464819735769094 2017-04-10 16:00:07 Twitter for iPhone This is Iggy. He was a rescue dog killed in the Stockholm attack. His memorial started with a collar and four bones. It's grown a bit. 14/10 https://t.co/E4a0R9my1M https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1 14 10 Iggy
215 851224888060895234 2017-04-10 00:06:42 Twitter for iPhone Meet Snoop. His number one passion is sticking his head out of car windows, so he purchased some doggles. Stylish af. 13/10 happy travels https://t.co/iHYfZdz444 https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1 13 10 Snoop
216 850753642995093505 2017-04-08 16:54:09 Twitter for iPhone This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN https://twitter.com/dog_rates/status/850753642995093505/photo/1,https://twitter.com/dog_rates/status/850753642995093505/photo/1 11 10 Kyle
217 850380195714523136 2017-04-07 16:10:12 Twitter for iPhone This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO https://twitter.com/dog_rates/status/850380195714523136/video/1 13 10 Leo
219 850145622816686080 2017-04-07 00:38:06 Twitter for iPhone This is Riley. He's making new friends. Jubilant as h*ck for the fun times ahead. 11/10 for all pups pictured https://t.co/PCX25VV78l https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1 11 10 Riley
220 850019790995546112 2017-04-06 16:18:05 Twitter for iPhone Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1 12 10 Boomer pupper pupper
221 849776966551130114 2017-04-06 00:13:11 Twitter for iPhone Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT https://twitter.com/dog_rates/status/849776966551130114/photo/1,https://twitter.com/dog_rates/status/849776966551130114/photo/1 12 10 NaN
223 849412302885593088 2017-04-05 00:04:08 Twitter for iPhone This is Noosh. He noticed you were in the shower and thought you could use some company. 12/10 h*ckin loyal https://t.co/Uq3ChFgWA3 https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1 12 10 Noosh
224 849336543269576704 2017-04-04 19:03:06 Twitter for iPhone At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 https://t.co/jqPk1BZ6xu https://twitter.com/dog_rates/status/849336543269576704/photo/1 11 10 NaN
225 849051919805034497 2017-04-04 00:12:06 Twitter for iPhone This is Kevin. Kevin doesn't give a single h*ck. Will sit in the fountain if he wants to. 13/10 churlish af https://t.co/r6GjO6MbZz https://twitter.com/dog_rates/status/849051919805034497/photo/1 13 10 Kevin
226 848690551926992896 2017-04-03 00:16:10 Twitter for iPhone Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU https://twitter.com/dog_rates/status/848690551926992896/photo/1 12 10 NaN
227 848324959059550208 2017-04-02 00:03:26 Twitter for iPhone Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z https://twitter.com/dog_rates/status/848324959059550208/photo/1 12 10 Odin
229 848212111729840128 2017-04-01 16:35:01 Twitter for iPhone This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1 https://twitter.com/dog_rates/status/848212111729840128/photo/1 6 10 Jerry
232 847962785489326080 2017-04-01 00:04:17 Twitter for iPhone This is Georgie. He's very shy. Only puppears when called. Aggressively average at fetch. Unique front paws. Looks slippery. 10/10 would pet https://t.co/rcDs5LkiSj https://twitter.com/dog_rates/status/847962785489326080/photo/1 10 10 Georgie
233 847842811428974592 2017-03-31 16:07:33 Twitter for iPhone This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 https://www.gofundme.com/help-save-rontu,https://twitter.com/dog_rates/status/847842811428974592/photo/1 12 10 Rontu
235 847606175596138505 2017-03-31 00:27:14 Twitter for iPhone This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1 https://twitter.com/dog_rates/status/847606175596138505/photo/1 12 10 Cannon
236 847251039262605312 2017-03-30 00:56:03 Twitter for iPhone This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq https://twitter.com/dog_rates/status/847251039262605312/photo/1,https://twitter.com/dog_rates/status/847251039262605312/photo/1 12 10 Furzey
237 847157206088847362 2017-03-29 18:43:12 Twitter for iPhone Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r https://www.petfinder.com/petdetail/37334596,https://twitter.com/dog_rates/status/847157206088847362/photo/1,https://twitter.com/dog_rates/status/847157206088847362/photo/1 11 10 Daisy
238 847116187444137987 2017-03-29 16:00:12 Twitter for iPhone Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 https://t.co/EeeErAbso0 https://twitter.com/dog_rates/status/847116187444137987/photo/1 11 10 NaN
239 846874817362120707 2017-03-29 00:01:05 Twitter for iPhone This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe https://twitter.com/dog_rates/status/846874817362120707/photo/1,https://twitter.com/dog_rates/status/846874817362120707/photo/1 13 10 Tuck
240 846514051647705089 2017-03-28 00:07:32 Twitter for iPhone This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1 13 10 Barney doggo doggo
241 846505985330044928 2017-03-27 23:35:28 Twitter for iPhone THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 STILL A VERY GOOD DOG https://t.co/GJ8rozumsy https://twitter.com/shomaristone/status/846484798663245829 11 10 NaN
242 846153765933735936 2017-03-27 00:15:53 Twitter for iPhone This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR https://twitter.com/dog_rates/status/846153765933735936/photo/1,https://twitter.com/dog_rates/status/846153765933735936/photo/1 13 10 Vixen
243 846139713627017216 2017-03-26 23:20:02 Twitter for iPhone SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON THE BRAKES 13/10 CANCEL THE GAME THIS IS ALL WE NEED https://t.co/4ctgpGcqAd https://twitter.com/csncapitals/status/846088479142531073 13 10 NaN
244 846042936437604353 2017-03-26 16:55:29 Twitter for iPhone Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW https://twitter.com/dog_rates/status/846042936437604353/photo/1 12 10 Jarvis
245 845812042753855489 2017-03-26 01:38:00 Twitter for iPhone We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1 13 10 NaN
246 845677943972139009 2017-03-25 16:45:08 Twitter for iPhone C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo https://twitter.com/dog_rates/status/845677943972139009/photo/1 12 10 NaN
248 845397057150107648 2017-03-24 22:08:59 Twitter for iPhone Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o https://www.gofundme.com/help-save-a-pup,https://twitter.com/dog_rates/status/845397057150107648/photo/1,https://twitter.com/dog_rates/status/845397057150107648/photo/1 13 10 Mimosa doggo doggo
249 845306882940190720 2017-03-24 16:10:40 Twitter for iPhone This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk https://twitter.com/dog_rates/status/845306882940190720/photo/1 12 10 Pickles pupper pupper
252 844973813909606400 2017-03-23 18:07:10 Twitter for iPhone This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr https://twitter.com/dog_rates/status/844973813909606400/photo/1 12 10 Brady
253 844704788403113984 2017-03-23 00:18:10 Twitter for iPhone This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I just wanna talk https://t.co/2RYiLGHuPN https://twitter.com/dog_rates/status/844704788403113984/photo/1 13 10 Luna
254 844580511645339650 2017-03-22 16:04:20 Twitter for iPhone This is Charlie. He wants to know if you have a moment to talk about washing machine insurance policies. 11/10 would hear him out https://t.co/gAzPqT7uyk https://twitter.com/dog_rates/status/844580511645339650/photo/1 11 10 Charlie
255 844223788422217728 2017-03-21 16:26:50 Twitter for iPhone This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx https://twitter.com/dog_rates/status/844223788422217728/photo/1 12 10 Margo
256 843981021012017153 2017-03-21 00:22:10 Twitter for iPhone HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/10 https://t.co/Gu5wHx3CBd https://twitter.com/brianstack153/status/796796054100471809 13 10 NaN
257 843856843873095681 2017-03-20 16:08:44 Twitter for iPhone Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e https://twitter.com/dog_rates/status/843856843873095681/photo/1 12 10 Sadie
258 843604394117681152 2017-03-19 23:25:35 Twitter for iPhone This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC https://twitter.com/dog_rates/status/843604394117681152/photo/1 11 10 Hank
259 843235543001513987 2017-03-18 22:59:54 Twitter for iPhone This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1 13 10 Tycho
261 842846295480000512 2017-03-17 21:13:10 Twitter for iPhone This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs https://twitter.com/dog_rates/status/842846295480000512/photo/1 13 10 Charlie
262 842765311967449089 2017-03-17 15:51:22 Twitter for iPhone Meet Indie. She's not a fan of baths but she's definitely a fan of hide &amp; seek. 12/10 click the link to help Indie\n\nhttps://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l https://www.gofundme.com/get-indie-home/,https://twitter.com/dog_rates/status/842765311967449089/photo/1,https://twitter.com/dog_rates/status/842765311967449089/photo/1 12 10 Indie
263 842535590457499648 2017-03-17 00:38:32 Twitter for iPhone This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe https://twitter.com/dog_rates/status/842535590457499648/photo/1 13 10 Winnie
264 842163532590374912 2017-03-16 00:00:07 Twitter for iPhone Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl https://twitter.com/dog_rates/status/842163532590374912/photo/1,https://twitter.com/dog_rates/status/842163532590374912/photo/1 12 10 George
265 842115215311396866 2017-03-15 20:48:07 Twitter for iPhone This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1 12 10 Bentley
267 841680585030541313 2017-03-14 16:01:03 Twitter for iPhone This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj https://twitter.com/dog_rates/status/841680585030541313/photo/1 12 10 Penny
268 841439858740625411 2017-03-14 00:04:30 Twitter for iPhone Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all https://t.co/SVNMdFqKDL https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1 14 10 NaN
269 841320156043304961 2017-03-13 16:08:50 Twitter for iPhone We don't rate penguins, but if we did, this one would get 12/10 https://t.co/cEORXhwZ5K https://twitter.com/abc/status/841311395547250688 12 10 NaN
270 841314665196081154 2017-03-13 15:47:01 Twitter Web Client This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5 https://twitter.com/dog_rates/status/841314665196081154/video/1 13 10 Max
271 841077006473256960 2017-03-13 00:02:39 Twitter for iPhone This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ https://twitter.com/dog_rates/status/841077006473256960/photo/1 12 10 Dawn
275 840696689258311684 2017-03-11 22:51:24 Twitter for iPhone I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin https://t.co/2gclc1MNr7 https://twitter.com/dog_rates/status/840696689258311684/photo/1 10 10 NaN
276 840632337062862849 2017-03-11 18:35:42 Twitter for iPhone Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o https://www.gofundme.com/3hgsuu0,https://twitter.com/dog_rates/status/840632337062862849/photo/1 12 10 Maddie
277 840370681858686976 2017-03-11 01:15:58 Twitter for iPhone You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately https://t.co/76iL7JUQdG https://twitter.com/dog_rates/status/840370681858686976/photo/1 13 10 NaN
278 840268004936019968 2017-03-10 18:27:58 Twitter for iPhone This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1 12 10 Monty
279 839990271299457024 2017-03-10 00:04:21 Twitter for iPhone Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr https://twitter.com/dog_rates/status/839990271299457024/photo/1,https://twitter.com/dog_rates/status/839990271299457024/photo/1 13 10 Sojourner
280 839549326359670784 2017-03-08 18:52:12 Twitter for iPhone Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu https://twitter.com/dog_rates/status/839549326359670784/photo/1 12 10 Winston
282 839239871831150596 2017-03-07 22:22:32 Twitter for iPhone This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1 13 10 Odie
283 838952994649550848 2017-03-07 03:22:35 Twitter for iPhone SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN https://t.co/ngAxYLVYHP https://twitter.com/ktla/status/838948714227998720 13 10 NaN
284 838921590096166913 2017-03-07 01:17:48 Twitter for iPhone This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv https://twitter.com/dog_rates/status/838921590096166913/photo/1 13 10 Arlo
287 838561493054533637 2017-03-06 01:26:54 Twitter for iPhone This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI https://twitter.com/dog_rates/status/838561493054533637/photo/1 13 10 Walter
288 838476387338051585 2017-03-05 19:48:43 Twitter for iPhone This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1 13 10 Stanley
292 838083903487373313 2017-03-04 17:49:08 Twitter for iPhone This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO https://twitter.com/dog_rates/status/838083903487373313/photo/1,https://twitter.com/dog_rates/status/838083903487373313/photo/1 13 10 Daisy
293 837820167694528512 2017-03-04 00:21:08 Twitter for iPhone Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK6jlgdH https://twitter.com/dog_rates/status/837820167694528512/photo/1,https://twitter.com/dog_rates/status/837820167694528512/photo/1 12 10 NaN pupper pupper
294 837482249356513284 2017-03-03 01:58:22 Twitter for iPhone This is Waffles. He's a ship captain in real life and in @GoodDogsGame. Must've gotten to the max level (wink) 13/10 would sail with https://t.co/Z3LAaV2pKz https://twitter.com/dog_rates/status/837482249356513284/photo/1,https://twitter.com/dog_rates/status/837482249356513284/photo/1 13 10 Waffles
295 837471256429613056 2017-03-03 01:14:41 Twitter for iPhone This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3 https://twitter.com/dog_rates/status/837471256429613056/photo/1,https://twitter.com/dog_rates/status/837471256429613056/photo/1 12 10 Vincent
296 837366284874571778 2017-03-02 18:17:34 Twitter for iPhone This is Lucy. She has a portrait of herself on her ear. Excellent for identification pupposes. 13/10 innovative af https://t.co/uNmxbL2lns https://twitter.com/dog_rates/status/837366284874571778/photo/1 13 10 Lucy
297 837110210464448512 2017-03-02 01:20:01 Twitter for iPhone This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B https://twitter.com/dog_rates/status/837110210464448512/photo/1 13 10 Clark pupper pupper
299 836989968035819520 2017-03-01 17:22:13 Twitter for iPhone This is Mookie. He really enjoys shopping but not from such high altitudes. Doin him quite the concern. 12/10 someone lower him https://t.co/beWUzGVKRM https://twitter.com/dog_rates/status/836989968035819520/photo/1 12 10 Mookie
300 836753516572119041 2017-03-01 01:42:39 Twitter for iPhone This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a doggo anymore. 12/10 https://t.co/GZmNEdyoJY https://twitter.com/dog_rates/status/836753516572119041/photo/1 12 10 Meera doggo doggo
301 836677758902222849 2017-02-28 20:41:37 Twitter for iPhone Say hello to Oliver. He's pretty exotic. Fairly pupset as well. Too many midterms coming pup. 11/10 would pet with extreme caution https://t.co/fGAPAsxjKs https://twitter.com/dog_rates/status/836677758902222849/photo/1,https://twitter.com/dog_rates/status/836677758902222849/photo/1 11 10 Oliver
304 836380477523124226 2017-02-28 01:00:19 Twitter for iPhone This is Ava. She just blasted off. Streamline af. Aerodynamic as h*ck. One small step for pupper, one giant leap for pupkind. 12/10 https://t.co/W4KffrdX3Q https://twitter.com/dog_rates/status/836380477523124226/photo/1 12 10 Ava pupper pupper
305 836260088725786625 2017-02-27 17:01:56 Twitter for iPhone This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD https://twitter.com/dog_rates/status/836260088725786625/photo/1 13 10 Lucy
306 836001077879255040 2017-02-26 23:52:43 Twitter for iPhone Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract https://t.co/uRdKlFArQE https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1 13 10 NaN
308 835574547218894849 2017-02-25 19:37:50 Twitter for iPhone This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q https://twitter.com/dog_rates/status/835574547218894849/photo/1,https://twitter.com/dog_rates/status/835574547218894849/photo/1 11 10 Eli
311 835297930240217089 2017-02-25 01:18:40 Twitter for iPhone Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO https://twitter.com/dog_rates/status/835297930240217089/photo/1 12 10 Ash
312 835264098648616962 2017-02-24 23:04:14 Twitter for iPhone Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU https://www.gofundme.com/lolas-life-saving-surgery-funds,https://twitter.com/dog_rates/status/835264098648616962/photo/1,https://twitter.com/dog_rates/status/835264098648616962/photo/1 12 10 Lola
314 835172783151792128 2017-02-24 17:01:22 Twitter for iPhone We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL https://twitter.com/dog_rates/status/835172783151792128/photo/1,https://twitter.com/dog_rates/status/835172783151792128/photo/1 12 10 NaN
315 835152434251116546 2017-02-24 15:40:31 Twitter for iPhone When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1 0 10 NaN
316 834931633769889797 2017-02-24 01:03:08 Twitter for iPhone This is Tucker. He decided it was time to part ways with his favorite ball. We captured the emotional farewell on camera. 12/10 https://t.co/jTe7Y6P0HK https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1 12 10 Tucker
317 834786237630337024 2017-02-23 15:25:23 Twitter for iPhone This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE https://twitter.com/dog_rates/status/834786237630337024/photo/1 13 10 Tobi
318 834574053763584002 2017-02-23 01:22:14 Twitter for iPhone Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 https://t.co/UtEVnQ1ZPg https://twitter.com/dog_rates/status/834574053763584002/photo/1 13 10 NaN doggo doggo
320 834458053273591808 2017-02-22 17:41:18 Twitter for iPhone Meet Chester (bottom) &amp; Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe https://twitter.com/dog_rates/status/834458053273591808/photo/1 12 10 Chester
321 834209720923721728 2017-02-22 01:14:30 Twitter for iPhone This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ https://twitter.com/dog_rates/status/834209720923721728/photo/1,https://twitter.com/dog_rates/status/834209720923721728/photo/1 12 10 Wilson
322 834167344700198914 2017-02-21 22:26:07 Twitter for iPhone This is Sunshine. She doesn't believe in personal space. Eyes pretty far apart for a dog. Has horns (whoa). 11/10 would pet with wonder https://t.co/o3bhLguymB https://twitter.com/dog_rates/status/834167344700198914/photo/1 11 10 Sunshine
323 834089966724603904 2017-02-21 17:18:39 Twitter for iPhone DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE 10/10 https://t.co/ffIH2WxwF0 https://twitter.com/stevekopack/status/834086676934836224 10 10 NaN doggo doggo
324 834086379323871233 2017-02-21 17:04:24 Twitter for iPhone This is Lipton. He's a West Romanian Snuggle Pup. Only a few left of his kind. 12/10 would boop https://t.co/5KmXPIGgAG https://twitter.com/dog_rates/status/834086379323871233/photo/1 12 10 Lipton
325 833863086058651648 2017-02-21 02:17:06 Twitter for iPhone This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ https://twitter.com/dog_rates/status/833863086058651648/photo/1,https://twitter.com/dog_rates/status/833863086058651648/photo/1 12 10 Bentley
326 833826103416520705 2017-02-20 23:50:09 Twitter for iPhone Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY https://twitter.com/dog_rates/status/833826103416520705/photo/1,https://twitter.com/dog_rates/status/833826103416520705/photo/1 13 10 Charlie
328 833722901757046785 2017-02-20 17:00:04 Twitter for iPhone This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET https://twitter.com/dog_rates/status/833722901757046785/photo/1,https://twitter.com/dog_rates/status/833722901757046785/photo/1 13 10 Bronte
329 833479644947025920 2017-02-20 00:53:27 Twitter for iPhone This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1 13 10 Poppy
330 833124694597443584 2017-02-19 01:23:00 Twitter for iPhone This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1 12 10 Gidget pupper pupper
331 832998151111966721 2017-02-18 17:00:10 Twitter for iPhone This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0 https://twitter.com/dog_rates/status/832998151111966721/photo/1,https://twitter.com/dog_rates/status/832998151111966721/photo/1 13 10 Rhino doggo doggo
333 832757312314028032 2017-02-18 01:03:09 Twitter for iPhone This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ https://twitter.com/dog_rates/status/832757312314028032/photo/1,https://twitter.com/dog_rates/status/832757312314028032/photo/1 13 10 Willow
334 832682457690300417 2017-02-17 20:05:43 Twitter for iPhone Prosperous good boy 13/10 socioeconomic af https://t.co/8YlD5lxPbQ https://twitter.com/telegraph/status/832268302944579584 13 10 NaN
335 832645525019123713 2017-02-17 17:38:57 Twitter Web Client There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10 \nhttps://t.co/dp5h9bCwU7 http://us.blastingnews.com/news/2017/02/jfk-announces-its-first-ever-ark-oasis-animal-terminal-001480161.html?sbdht=_pM1QUzk3wsdTxcmMoRPV7FWYYlsNKcFRcYSY7OmeHnOXA4NtUM6PLQ2_ 10 10 not
336 832636094638288896 2017-02-17 17:01:29 Twitter for iPhone This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr https://twitter.com/dog_rates/status/832636094638288896/photo/1 12 10 Orion
337 832397543355072512 2017-02-17 01:13:34 Twitter for iPhone This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt https://twitter.com/dog_rates/status/832397543355072512/photo/1,https://twitter.com/dog_rates/status/832397543355072512/photo/1 12 10 Eevee
338 832369877331693569 2017-02-16 23:23:38 Twitter for iPhone This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d https://twitter.com/dog_rates/status/832369877331693569/photo/1 11 10 Charlie
339 832273440279240704 2017-02-16 17:00:25 Twitter for iPhone Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz https://twitter.com/dog_rates/status/832273440279240704/video/1 14 10 Smiley doggo doggo
344 832032802820481025 2017-02-16 01:04:13 Twitter for iPhone This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M https://www.petfinder.com/petdetail/34918210,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1 12 10 Miguel doggo doggo
345 831939777352105988 2017-02-15 18:54:34 Twitter for iPhone This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT https://twitter.com/dog_rates/status/831939777352105988/photo/1 12 10 Emanuel doggo doggo
347 831911600680497154 2017-02-15 17:02:36 Twitter for iPhone Meet Kuyu. He was trapped in a well for 10 days. Rescued yesterday using a device designed by a local robotics team. 14/10 for all involved https://t.co/l38R6IZNNg https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1 14 10 Kuyu
348 831670449226514432 2017-02-15 01:04:21 Twitter for iPhone This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg https://twitter.com/dog_rates/status/831670449226514432/photo/1 13 10 Daisy
349 831650051525054464 2017-02-14 23:43:18 Twitter for iPhone I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO http://www.gofundme.com/bluethewhitehusky,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1 13 10 NaN
350 831552930092285952 2017-02-14 17:17:22 Twitter for iPhone This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse https://twitter.com/dog_rates/status/831552930092285952/photo/1 13 10 Dutch
351 831322785565769729 2017-02-14 02:02:51 Twitter for iPhone This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK https://twitter.com/dog_rates/status/831322785565769729/photo/1 12 10 Pete doggo doggo
352 831315979191906304 2017-02-14 01:35:49 Twitter Web Client I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all https://t.co/jd6lYhfdH4 https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1 13 10 NaN pupper pupper
353 831309418084069378 2017-02-14 01:09:44 Twitter for iPhone This is Scooter and his son Montoya. Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V https://twitter.com/dog_rates/status/831309418084069378/photo/1 12 10 Scooter
354 831262627380748289 2017-02-13 22:03:49 Twitter for iPhone This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY https://twitter.com/dog_rates/status/831262627380748289/photo/1 12 10 Tucker
355 830956169170665475 2017-02-13 01:46:03 Twitter for iPhone Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5 https://twitter.com/dog_rates/status/830956169170665475/video/1 12 10 Reggie
356 830583320585068544 2017-02-12 01:04:29 Twitter for iPhone This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1 13 10 Lilly
358 830097400375152640 2017-02-10 16:53:37 Twitter for iPhone Meet Samson. He's absolute fluffy perfection. Easily 13/10, but he needs your help. Click the link to find out more\n\nhttps://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW https://www.gofundme.com/sick-baby-samson,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1 13 10 Samson
360 829861396166877184 2017-02-10 01:15:49 Twitter for iPhone This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU https://twitter.com/dog_rates/status/829861396166877184/photo/1 12 10 Mia
361 829501995190984704 2017-02-09 01:27:41 Twitter for iPhone This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul https://twitter.com/dog_rates/status/829501995190984704/photo/1,https://twitter.com/dog_rates/status/829501995190984704/photo/1 12 10 Leo
362 829449946868879360 2017-02-08 22:00:52 Twitter for iPhone Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB https://twitter.com/dog_rates/status/829449946868879360/photo/1 11 10 NaN doggo doggo
363 829374341691346946 2017-02-08 17:00:26 Twitter for iPhone This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1 13 10 Astrid doggo doggo
364 829141528400556032 2017-02-08 01:35:19 Twitter for iPhone This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR https://twitter.com/dog_rates/status/829141528400556032/photo/1,https://twitter.com/dog_rates/status/829141528400556032/photo/1 12 10 Malcolm
365 829011960981237760 2017-02-07 17:00:28 Twitter for iPhone This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is https://twitter.com/dog_rates/status/829011960981237760/photo/1,https://twitter.com/dog_rates/status/829011960981237760/photo/1 13 10 Dexter
367 828770345708580865 2017-02-07 01:00:22 Twitter for iPhone This is Alfie. He's your Lyft for tonight. Kindly requests you buckle pup and remain reasonably calm during the ride. 13/10 he must focus https://t.co/AqPTHYUBFz https://twitter.com/dog_rates/status/828770345708580865/photo/1 13 10 Alfie
368 828708714936930305 2017-02-06 20:55:28 Twitter for iPhone This is Fiona. She's an exotic dog. Seems rather impatient. Jaw extension on another level tho. Looks slippery. 10/10 would still pet https://t.co/vst2SEVJO3 https://twitter.com/dog_rates/status/828708714936930305/photo/1,https://twitter.com/dog_rates/status/828708714936930305/photo/1 10 10 Fiona
369 828650029636317184 2017-02-06 17:02:17 Twitter for iPhone Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1 14 10 one
370 828409743546925057 2017-02-06 01:07:28 Twitter for iPhone This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt https://twitter.com/dog_rates/status/828409743546925057/photo/1 12 10 Mutt
371 828408677031882754 2017-02-06 01:03:14 Twitter for iPhone This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10 deep breaths Bear https://t.co/7WFLKli2T3 https://twitter.com/dog_rates/status/828408677031882754/photo/1 12 10 Bear
372 828381636999917570 2017-02-05 23:15:47 Twitter for iPhone Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9 https://twitter.com/dog_rates/status/828381636999917570/photo/1 14 10 Doobert doggo doggo
373 828376505180889089 2017-02-05 22:55:23 Twitter for iPhone This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR https://twitter.com/dog_rates/status/828376505180889089/photo/1 13 10 Beebop
374 828372645993398273 2017-02-05 22:40:03 Twitter for iPhone This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS https://twitter.com/dog_rates/status/828372645993398273/photo/1 12 10 Alexander
375 828361771580813312 2017-02-05 21:56:51 Twitter Web Client Beebop and Doobert should start a band 12/10 would listen NaN 12 10 NaN
376 828046555563323392 2017-02-05 01:04:17 Twitter for iPhone This is Sailer. He waits on the roof for his owners to come home. Nobody knows how he gets up there. H*ckin loyal af. 13/10 https://t.co/O37z4jaMG9 https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1 13 10 Sailer
377 828011680017821696 2017-02-04 22:45:42 Twitter for iPhone Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB https://twitter.com/dog_rates/status/828011680017821696/photo/1,https://twitter.com/dog_rates/status/828011680017821696/photo/1 11 10 Brutus
378 827933404142436356 2017-02-04 17:34:40 Twitter for iPhone This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1 12 10 Kona pupper pupper
379 827653905312006145 2017-02-03 23:04:02 Twitter for iPhone This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3 https://twitter.com/dog_rates/status/827653905312006145/photo/1 12 10 Boots
380 827600520311402496 2017-02-03 19:31:54 Twitter for iPhone Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb https://twitter.com/dog_rates/status/827600520311402496/photo/1 13 10 Tucker
381 827324948884643840 2017-02-03 01:16:53 Twitter for iPhone This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5 https://twitter.com/dog_rates/status/827324948884643840/photo/1 12 10 Ralphie
383 827199976799354881 2017-02-02 17:00:17 Twitter for iPhone This is Charlie. He wins every game of chess he plays. Won't let opponent pet him until they forfeit. 13/10 you win again Charlie https://t.co/UkyQibIBzZ https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1 13 10 Charlie
384 826958653328592898 2017-02-02 01:01:21 Twitter for iPhone This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR https://twitter.com/dog_rates/status/826958653328592898/photo/1 12 10 Loki doggo doggo
385 826848821049180160 2017-02-01 17:44:55 Twitter for iPhone This is Cupid. He was found in the trash. Now he's well on his way to prosthetic front legs and a long happy doggo life. 13/10 heroic af https://t.co/WS0Gha8vRh https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1 13 10 Cupid doggo doggo
388 826598365270007810 2017-02-01 01:09:42 Twitter for iPhone This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1 13 10 Pawnd
389 826476773533745153 2017-01-31 17:06:32 Twitter for iPhone This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh https://twitter.com/dog_rates/status/826476773533745153/photo/1 12 10 Pilot doggo doggo
390 826240494070030336 2017-01-31 01:27:39 Twitter for iPhone We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C https://twitter.com/dog_rates/status/826240494070030336/photo/1 11 10 NaN
391 826204788643753985 2017-01-30 23:05:46 Twitter for iPhone Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX http://us.blastingnews.com/news/2017/01/kentucky-teen-helps-lost-yellow-labrador-and-gets-a-huge-surprise-001431969.html?sbdht=_pM1QUzk3wsenGU1giO7UnJ5NGGiKRW9AD5xs2MkaDpYY13JxbtKE4w2_,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1 13 10 NaN doggo doggo
392 826115272272650244 2017-01-30 17:10:04 Twitter for iPhone This is Ike. He's demonstrating the pupmost restraint. 13/10 super good boy https://t.co/6gHoGah9nm https://twitter.com/dog_rates/status/826115272272650244/photo/1 13 10 Ike
393 825876512159186944 2017-01-30 01:21:19 Twitter for iPhone This is Mo. No one will push him around in the grocery cart. He's quite pupset about it. 11/10 I volunteer https://t.co/feNwTq12S5 https://twitter.com/dog_rates/status/825876512159186944/photo/1 11 10 Mo
394 825829644528148480 2017-01-29 22:15:05 Twitter for iPhone This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM https://twitter.com/dog_rates/status/825829644528148480/photo/1,https://twitter.com/dog_rates/status/825829644528148480/photo/1 12 10 Toby
395 825535076884762624 2017-01-29 02:44:34 Twitter for iPhone Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1 https://twitter.com/dog_rates/status/825535076884762624/photo/1 14 10 NaN puppo puppo
396 825147591692263424 2017-01-28 01:04:51 Twitter for iPhone This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD https://twitter.com/dog_rates/status/825147591692263424/photo/1 13 10 Sweet
398 825026590719483904 2017-01-27 17:04:02 Twitter for iPhone Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc https://www.gofundme.com/my-puppys-double-cataract-surgery,https://twitter.com/dog_rates/status/825026590719483904/photo/1,https://twitter.com/dog_rates/status/825026590719483904/photo/1 12 10 Pablo puppo puppo
400 824775126675836928 2017-01-27 00:24:48 Twitter for iPhone This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI https://twitter.com/dog_rates/status/824775126675836928/photo/1,https://twitter.com/dog_rates/status/824775126675836928/photo/1 12 10 Scooter
401 824663926340194305 2017-01-26 17:02:56 Twitter for iPhone This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM https://twitter.com/dog_rates/status/824663926340194305/photo/1 13 10 Wilson
402 824325613288833024 2017-01-25 18:38:36 Twitter for iPhone Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS https://twitter.com/dog_rates/status/824325613288833024/photo/1 13 10 NaN pupper pupper
403 824297048279236611 2017-01-25 16:45:05 Twitter for iPhone This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt https://twitter.com/dog_rates/status/824297048279236611/photo/1,https://twitter.com/dog_rates/status/824297048279236611/photo/1 11 10 Nala
404 824025158776213504 2017-01-24 22:44:42 Twitter for iPhone "I wish we were dogs" 14/10 for @BadlandsNPS https://t.co/50qq2DItPW https://twitter.com/badlandsnps/status/823966201328046080 14 10 NaN
405 823939628516474880 2017-01-24 17:04:50 Twitter for iPhone This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw https://twitter.com/dog_rates/status/823939628516474880/photo/1 12 10 Cash
407 823699002998870016 2017-01-24 01:08:40 Twitter for iPhone This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL https://twitter.com/dog_rates/status/823699002998870016/photo/1 12 10 Winston
408 823581115634085888 2017-01-23 17:20:14 Twitter for iPhone This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U https://twitter.com/dog_rates/status/823581115634085888/photo/1 11 10 Crawford
410 823322678127919110 2017-01-23 00:13:17 Twitter for iPhone This is Wyatt. He's got the fastest paws in the West. H*ckin deadly. 11/10 would ride into the sunset with https://t.co/stkJ377KK7 https://twitter.com/dog_rates/status/823322678127919110/photo/1,https://twitter.com/dog_rates/status/823322678127919110/photo/1 11 10 Wyatt
412 822975315408461824 2017-01-22 01:12:59 Twitter for iPhone This is Albus. He's soaked as h*ck. Seems to have misplaced an ear as well. Still in good spirits tho. 12/10 would dry https://t.co/yUM8jYStuG https://twitter.com/dog_rates/status/822975315408461824/photo/1 12 10 Albus
413 822872901745569793 2017-01-21 18:26:02 Twitter for iPhone Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 https://t.co/nTz3FtorBc https://twitter.com/dog_rates/status/822872901745569793/photo/1 13 10 NaN puppo puppo
414 822859134160621569 2017-01-21 17:31:20 Twitter for iPhone This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS https://twitter.com/dog_rates/status/822859134160621569/photo/1 12 10 Hobbes
416 822610361945911296 2017-01-21 01:02:48 Twitter for iPhone Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh https://twitter.com/dog_rates/status/822610361945911296/photo/1 12 10 NaN
417 822489057087389700 2017-01-20 17:00:46 Twitter for iPhone This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1 13 10 Paisley
418 822462944365645825 2017-01-20 15:17:01 Twitter for iPhone This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1 14 10 Gabe pupper pupper
419 822244816520155136 2017-01-20 00:50:15 Twitter for iPhone We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 https://twitter.com/dog_rates/status/822244816520155136/photo/1 11 10 NaN
421 821886076407029760 2017-01-19 01:04:45 Twitter for iPhone This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV https://twitter.com/dog_rates/status/821886076407029760/photo/1 13 10 Jimison
423 821765923262631936 2017-01-18 17:07:18 Twitter for iPhone This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52 https://twitter.com/dog_rates/status/821765923262631936/photo/1 13 10 Duchess doggo doggo
424 821522889702862852 2017-01-18 01:01:34 Twitter for iPhone This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn https://twitter.com/dog_rates/status/821522889702862852/photo/1 13 10 Harlso
426 821407182352777218 2017-01-17 17:21:47 Twitter for iPhone This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG https://twitter.com/dog_rates/status/821407182352777218/video/1 14 10 Sundance doggo doggo
428 821149554670182400 2017-01-17 00:18:04 Twitter for iPhone This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2 https://twitter.com/dog_rates/status/821149554670182400/video/1 12 10 Luca
429 821107785811234820 2017-01-16 21:32:06 Twitter for iPhone Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl https://twitter.com/dog_rates/status/821107785811234820/photo/1 11 10 NaN doggo doggo
430 821044531881721856 2017-01-16 17:20:45 Twitter for iPhone This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu https://twitter.com/dog_rates/status/821044531881721856/photo/1 12 10 Flash
432 820749716845686786 2017-01-15 21:49:15 Twitter for iPhone Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1 https://twitter.com/dog_rates/status/820749716845686786/photo/1,https://twitter.com/dog_rates/status/820749716845686786/photo/1 13 10 Sunny
433 820690176645140481 2017-01-15 17:52:40 Twitter for iPhone The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1 84 70 NaN
436 820314633777061888 2017-01-14 17:00:24 Twitter for iPhone We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE https://www.loveyourmelon.com/pages/ourstory,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1 14 10 NaN
437 820078625395449857 2017-01-14 01:22:35 Twitter for iPhone I've never wanted to go to a camp more in my entire life. 12/10 for all on board https://t.co/wJZlpGFEbD https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1 12 10 NaN
439 819952236453363712 2017-01-13 17:00:21 Twitter for iPhone This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb https://www.gofundme.com/servicedogoliver,https://twitter.com/dog_rates/status/819952236453363712/photo/1 13 10 Oliver puppo puppo
440 819924195358416896 2017-01-13 15:08:56 Twitter for iPhone Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him https://t.co/XdRNXNYD4E https://twitter.com/dog_rates/status/819924195358416896/video/1 11 10 NaN doggo doggo
441 819711362133872643 2017-01-13 01:03:12 Twitter for iPhone This is Howie. He just bloomed. 11/10 revolutionary af https://t.co/m5fYxrO3IU https://twitter.com/dog_rates/status/819711362133872643/photo/1,https://twitter.com/dog_rates/status/819711362133872643/photo/1 11 10 Howie
442 819588359383371776 2017-01-12 16:54:26 Twitter for iPhone This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO https://twitter.com/dog_rates/status/819588359383371776/photo/1 13 10 Jazzy
443 819347104292290561 2017-01-12 00:55:47 Twitter for iPhone Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1 12 10 Anna
444 819238181065359361 2017-01-11 17:42:57 Twitter Web Client Some happy pupper news to share. 10/10 for everyone involved \nhttps://t.co/MefMAZX2uv http://us.blastingnews.com/news/2017/01/200-dogs-saved-from-south-korean-dog-meat-industry-001385441.html?sbdht=_pM1QUzk3wsfscF9XF2WEd9KoWDpsQlMUjfh1HxxUq0u5mMbiu2B0kw2_ 10 10 NaN pupper pupper
445 819227688460238848 2017-01-11 17:01:16 Twitter for iPhone This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT https://twitter.com/dog_rates/status/819227688460238848/photo/1 12 10 Finn
448 819006400881917954 2017-01-11 02:21:57 Twitter for iPhone This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1 14 10 Sunny doggo doggo
449 819004803107983360 2017-01-11 02:15:36 Twitter for iPhone This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1 14 10 Bo doggo doggo
451 818627210458333184 2017-01-10 01:15:10 Twitter for iPhone Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG https://twitter.com/dog_rates/status/818627210458333184/photo/1 13 10 Wafer
452 818614493328580609 2017-01-10 00:24:38 Twitter for iPhone This is Bear. He's a passionate believer of the outdoors. Leaves excite him. 12/10 would hug softly https://t.co/FOF0hBDxP8 https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1 12 10 Bear
454 818536468981415936 2017-01-09 19:14:36 Twitter for iPhone This is Tom. He's a silly dog. Known for his unconventional swing style. One h*ck of a sneaky tongue slip too. 11/10 would push https://t.co/6fSVcn9HAU https://twitter.com/dog_rates/status/818536468981415936/photo/1 11 10 Tom
456 818259473185828864 2017-01-09 00:53:55 Twitter for iPhone This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib https://twitter.com/dog_rates/status/818259473185828864/photo/1 12 10 Florence
457 818145370475810820 2017-01-08 17:20:31 Twitter for iPhone This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1 11 10 Autumn
458 817908911860748288 2017-01-08 01:40:55 Twitter for iPhone Looks like he went cross-eyed trying way too hard to use the force. 12/10 \nhttps://t.co/bbuKxk0fM8 https://twitter.com/micahgrimes/status/817902080979599361 12 10 NaN
459 817827839487737858 2017-01-07 20:18:46 Twitter for iPhone This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA https://twitter.com/dog_rates/status/817827839487737858/video/1 13 10 Buddy
460 817777686764523521 2017-01-07 16:59:28 Twitter for iPhone This is Dido. She's playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7 https://twitter.com/dog_rates/status/817777686764523521/video/1 13 10 Dido doggo pupper doggopupper
461 817536400337801217 2017-01-07 01:00:41 Twitter for iPhone Say hello to Eugene &amp; Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1 12 10 Eugene
463 817423860136083457 2017-01-06 17:33:29 Twitter for iPhone This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ https://twitter.com/dog_rates/status/817423860136083457/video/1 13 10 Ken
464 817415592588222464 2017-01-06 17:00:38 Twitter for iPhone Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 https://www.gofundme.com/help-strudel-walk-again?rcid=ec2be8b6f825461f8ee0fd5dcdf43fea,https://twitter.com/dog_rates/status/817415592588222464/photo/1 11 10 Strudel
466 817171292965273600 2017-01-06 00:49:53 Twitter for iPhone This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw https://twitter.com/dog_rates/status/817171292965273600/photo/1 13 10 Tebow
467 817120970343411712 2017-01-05 21:29:55 Twitter for iPhone Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T https://twitter.com/dog_rates/status/817120970343411712/photo/1 13 10 NaN
468 817056546584727552 2017-01-05 17:13:55 Twitter for iPhone This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH https://twitter.com/dog_rates/status/817056546584727552/photo/1 11 10 Chloe
470 816816676327063552 2017-01-05 01:20:46 Twitter for iPhone This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9 https://twitter.com/dog_rates/status/816816676327063552/photo/1 12 10 Timber
471 816697700272001025 2017-01-04 17:27:59 Twitter for iPhone This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF https://twitter.com/dog_rates/status/816697700272001025/photo/1,https://twitter.com/dog_rates/status/816697700272001025/photo/1 12 10 Binky
472 816450570814898180 2017-01-04 01:05:59 Twitter for iPhone Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k https://twitter.com/dog_rates/status/816450570814898180/photo/1,https://twitter.com/dog_rates/status/816450570814898180/photo/1 13 10 Moose
473 816336735214911488 2017-01-03 17:33:39 Twitter for iPhone This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY https://twitter.com/dog_rates/status/816336735214911488/photo/1 11 10 Dudley
474 816091915477250048 2017-01-03 01:20:49 Twitter for iPhone This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1 12 10 Comet
477 815990720817401858 2017-01-02 18:38:42 Twitter for iPhone Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p https://www.gofundme.com/surgeryforjacktheminpin,https://twitter.com/dog_rates/status/815990720817401858/photo/1 11 10 Jack
478 815966073409433600 2017-01-02 17:00:46 Twitter for iPhone Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k https://twitter.com/dog_rates/status/815966073409433600/video/1 13 10 NaN pupper pupper
480 815736392542261248 2017-01-02 01:48:06 Twitter for iPhone This is Akumi. It's his birthday. He received many lickable gifts. 11/10 happy h*ckin birthday https://t.co/gd9UlLOCQ0 https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1 11 10 Akumi
481 815639385530101762 2017-01-01 19:22:38 Twitter for iPhone This is Titan. His nose is quite chilly. Requests to return to the indoors. 12/10 would boop to warm https://t.co/bLZuOh9sKy https://twitter.com/dog_rates/status/815639385530101762/photo/1 12 10 Titan
482 815390420867969024 2017-01-01 02:53:20 Twitter for iPhone Happy New Year from the squad! 13/10 for all https://t.co/9njRxyUd5L https://twitter.com/dog_rates/status/815390420867969024/photo/1 13 10 NaN
483 814986499976527872 2016-12-31 00:08:17 Twitter for iPhone This is Cooper. Someone attacked him with a sharpie. Poor pupper. 11/10 nifty tongue slip tho https://t.co/01vpuRDXQ8 https://twitter.com/dog_rates/status/814986499976527872/photo/1 11 10 Cooper pupper pupper
484 814638523311648768 2016-12-30 01:05:33 Twitter for iPhone This is Olivia. She's a passionate advocate of candid selfies. 12/10 would boop shnoop https://t.co/0LdNjoiNbv https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1 12 10 Olivia
486 814530161257443328 2016-12-29 17:54:58 Twitter for iPhone This is Alf. Someone just rubbed a balloon on his head. He's only a little pupset about it. 12/10 would pet well https://t.co/IOdgfnSE9G https://twitter.com/dog_rates/status/814530161257443328/photo/1 12 10 Alf
487 814153002265309185 2016-12-28 16:56:16 Twitter for iPhone This is Oshie. He's ready to party. Bought that case himself. 12/10 someone tell Oshie it's Wednesday morning https://t.co/YIJo7X7K9J https://twitter.com/dog_rates/status/814153002265309185/photo/1 12 10 Oshie
489 813910438903693312 2016-12-28 00:52:25 Twitter for iPhone This is Chubbs. He dug a hole and now he's stuck in it. Dang h*ckin doggo. 11/10 would assist https://t.co/z1VRj1cYZf https://twitter.com/dog_rates/status/813910438903693312/photo/1 11 10 Chubbs doggo doggo
490 813812741911748608 2016-12-27 18:24:12 Twitter for iPhone Meet Gary, Carrie Fisher's dog. Idk what I can say about Gary that reflects the inspirational awesomeness that was Carrie Fisher. 14/10 RIP https://t.co/uBnQTNEeGg https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1 14 10 Gary
491 813800681631023104 2016-12-27 17:36:16 Twitter for iPhone This is Sky. She's learning how to roll her R's. 12/10 cultured af https://t.co/OuaVvVkwJ1 https://twitter.com/dog_rates/status/813800681631023104/photo/1 12 10 Sky
492 813217897535406080 2016-12-26 03:00:30 Twitter for iPhone Here is Atlas. He went all out this year. 13/10 downright magical af https://t.co/DVYIZOnO81 https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1 13 10 Atlas
493 813202720496779264 2016-12-26 02:00:11 Twitter for iPhone Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 https://t.co/cD967DjnIn https://twitter.com/dog_rates/status/813202720496779264/photo/1 11 10 NaN doggo doggo
494 813187593374461952 2016-12-26 01:00:05 Twitter for iPhone We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 https://t.co/rvSANEsQZJ https://twitter.com/dog_rates/status/813187593374461952/photo/1 13 10 NaN
495 813172488309972993 2016-12-26 00:00:03 Twitter for iPhone This is Eleanor. She winks like she knows many things that you don't. 12/10 https://t.co/bxGwkJa2kE https://twitter.com/dog_rates/status/813172488309972993/photo/1 12 10 Eleanor
496 813157409116065792 2016-12-25 23:00:08 Twitter for iPhone This is Layla. It is her first Christmas. She got to be one of the presents. 12/10 I wish my presents would bark https://t.co/hwhCbhCjnV https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1 12 10 Layla
497 813142292504645637 2016-12-25 22:00:04 Twitter for iPhone Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 https://t.co/KK4XQK9SPi https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1 13 10 NaN
499 813127251579564032 2016-12-25 21:00:18 Twitter for iPhone Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup https://t.co/BzITyGw3JA https://twitter.com/dog_rates/status/813127251579564032/photo/1,https://twitter.com/dog_rates/status/813127251579564032/photo/1 11 10 NaN doggo doggo
500 813112105746448384 2016-12-25 20:00:07 Twitter for iPhone Meet Toby. He's pupset because his hat isn't big enough. Christmas is ruined. 12/10 it'll be ok Toby https://t.co/zfdaGZlweq https://twitter.com/dog_rates/status/813112105746448384/photo/1 12 10 Toby
501 813096984823349248 2016-12-25 19:00:02 Twitter for iPhone This is Rocky. He got triple-doggo-dared. Stuck af. 11/10 someone help him https://t.co/soNL00XWVu https://twitter.com/dog_rates/status/813096984823349248/photo/1 11 10 Rocky doggo doggo
502 813081950185472002 2016-12-25 18:00:17 Twitter for iPhone This is Baron. He's officially festive as h*ck. Thinks it's just a fancy scarf. 11/10 would pat head approvingly https://t.co/PjulYEXTvg https://twitter.com/dog_rates/status/813081950185472002/photo/1,https://twitter.com/dog_rates/status/813081950185472002/photo/1 11 10 Baron
503 813066809284972545 2016-12-25 17:00:08 Twitter for iPhone This is Tyr. He is disgusted by holiday traffic. Just trying to get to Christmas brunch on time. 12/10 hurry up pup https://t.co/syuTXARdtN https://twitter.com/dog_rates/status/813066809284972545/photo/1 12 10 Tyr
504 813051746834595840 2016-12-25 16:00:16 Twitter for iPhone This is Bauer. He had nothing to do with the cookies that disappeared. 13/10 very good boy https://t.co/AIMF8ouzvl https://twitter.com/dog_rates/status/813051746834595840/photo/1 13 10 Bauer
505 812781120811126785 2016-12-24 22:04:54 Twitter for iPhone This is Swagger. He's the Cleveland Browns ambassador. Hype as h*ck after that first win today. 10/10 https://t.co/lXFM1l22bG https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1 10 10 Swagger
507 812709060537683968 2016-12-24 17:18:34 Twitter for iPhone This is Brandi and Harley. They are practicing their caroling for later. Both 12/10 festive af https://t.co/AbBDuGZUpp https://twitter.com/dog_rates/status/812709060537683968/photo/1 12 10 Brandi
508 812503143955202048 2016-12-24 03:40:19 Twitter for iPhone I'm happy to inform you all that Jake is in excellent hands. 13/10 for him and his new family \nhttps://t.co/LRCTJpnCnS https://t.co/wZz7fI6XO1 https://m.facebook.com/story.php?story_fbid=1888712391349242&id=1506300642923754&refsrc=http%3A%2F%2Ft.co%2FURVffYPPjY&_rdr,https://twitter.com/dog_rates/status/812503143955202048/photo/1,https://twitter.com/dog_rates/status/812503143955202048/photo/1 13 10 NaN
509 812466873996607488 2016-12-24 01:16:12 Twitter for iPhone This is Mary. She's desperately trying to recreate her Coachella experience. 12/10 downright h*ckin adorable https://t.co/BAJrfPvtux https://twitter.com/dog_rates/status/812466873996607488/photo/1 12 10 Mary
510 812372279581671427 2016-12-23 19:00:19 Twitter for iPhone This is Moe. He's a fetty woof. Got a cardboard cutout of himself for Christmas. 13/10 inspirational af https://t.co/gCnAeL2mvT https://twitter.com/dog_rates/status/812372279581671427/photo/1,https://twitter.com/dog_rates/status/812372279581671427/photo/1 13 10 Moe
511 811985624773361665 2016-12-22 17:23:53 Twitter for iPhone Say hello to Ted. He accidentally opened the front facing camera. 11/10 h*ckin unpupared https://t.co/sIB5C6FDop https://twitter.com/dog_rates/status/811985624773361665/photo/1 11 10 Ted
512 811744202451197953 2016-12-22 01:24:33 Twitter for iPhone This is Halo. She likes watermelon. 13/10 https://t.co/TZkiQZqwA6 https://twitter.com/dog_rates/status/811744202451197953/photo/1 13 10 Halo
514 811627233043480576 2016-12-21 17:39:46 Twitter for iPhone This is Augie. He's a savage. Doesn't give a h*ck about your garden. Still 10/10 would forgive then pet https://t.co/IU8S0n4oxn https://twitter.com/dog_rates/status/811627233043480576/photo/1 10 10 Augie
515 811386762094317568 2016-12-21 01:44:13 Twitter for iPhone This is Craig. That's actually a normal sized fence he's stuck on. H*ckin massive pupper. 11/10 someone help him https://t.co/aAUXzoxaBy https://twitter.com/dog_rates/status/811386762094317568/photo/1 11 10 Craig pupper pupper
516 810984652412424192 2016-12-19 23:06:23 Twitter for iPhone Meet Sam. She smiles 24/7 &amp; secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx https://www.gofundme.com/sams-smile,https://twitter.com/dog_rates/status/810984652412424192/photo/1 24 7 Sam
517 810896069567610880 2016-12-19 17:14:23 Twitter for iPhone This is Hunter. He just found out he needs braces. Requesting an orthodogtist stat. 11/10 you're fine Hunter, everything's fine https://t.co/zW1o0W4AYV https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1 11 10 Hunter
518 810657578271330305 2016-12-19 01:26:42 Twitter for iPhone This is Pavlov. His floatation device has failed him. He's quite pupset about it. 11/10 would rescue https://t.co/MXd0AGDsRJ https://twitter.com/dog_rates/status/810657578271330305/photo/1 11 10 Pavlov
519 810284430598270976 2016-12-18 00:43:57 Twitter for iPhone This is Phil. He's a father. A very good father too. 13/10 everybody loves Phil https://t.co/9p6ECXJMMu https://twitter.com/dog_rates/status/810284430598270976/photo/1,https://twitter.com/dog_rates/status/810284430598270976/photo/1 13 10 Phil
520 810254108431155201 2016-12-17 22:43:27 Twitter for iPhone This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb https://twitter.com/dog_rates/status/810254108431155201/photo/1 12 10 Gus
521 809920764300447744 2016-12-17 00:38:52 Twitter for iPhone Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo https://twitter.com/dog_rates/status/809920764300447744/photo/1 10 10 NaN
523 809448704142938112 2016-12-15 17:23:04 Twitter for iPhone I call this one "A Blep by the Sea" 12/10 https://t.co/EMdnCugNbo https://twitter.com/dog_rates/status/809448704142938112/photo/1 12 10 NaN
524 809220051211603969 2016-12-15 02:14:29 Twitter for iPhone This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p https://twitter.com/dog_rates/status/809220051211603969/photo/1,https://twitter.com/dog_rates/status/809220051211603969/photo/1 12 10 Kyro
525 809084759137812480 2016-12-14 17:16:53 Twitter for iPhone This is Wallace. You said you brushed your teeth but he checked your toothbrush and it was bone dry. 11/10 not pupset, just disappointed https://t.co/nadm8yWZ4h https://twitter.com/dog_rates/status/809084759137812480/photo/1 11 10 Wallace
526 808838249661788160 2016-12-14 00:57:20 Twitter for iPhone This is Ito. He'll be your uber driver tonight. Currently adjusting the mirrors. 13/10 incredibly h*ckin responsible https://t.co/Zrrcw29o13 https://twitter.com/dog_rates/status/808838249661788160/photo/1 13 10 Ito
527 808733504066486276 2016-12-13 18:01:07 Twitter for iPhone Here's a pupper in a onesie. Quite pupset about it. Currently plotting revenge. 12/10 would rescue https://t.co/xQfrbNK3HD https://twitter.com/dog_rates/status/808733504066486276/photo/1 12 10 NaN pupper pupper
528 808501579447930884 2016-12-13 02:39:32 Twitter for iPhone This is Koda. He dug a hole and then sat in it because why not. Unamused by the bath that followed. 12/10 https://t.co/SQhyqrr8px https://twitter.com/dog_rates/status/808501579447930884/photo/1,https://twitter.com/dog_rates/status/808501579447930884/photo/1 12 10 Koda
529 808344865868283904 2016-12-12 16:16:49 Vine - Make a Scene This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM https://vine.co/v/5QWd3LZqXxd 11 10 Seamus
531 808106460588765185 2016-12-12 00:29:28 Twitter for iPhone Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time https://t.co/ANBpEYHaho https://twitter.com/dog_rates/status/808106460588765185/photo/1 12 10 NaN doggo pupper doggopupper
532 808001312164028416 2016-12-11 17:31:39 Twitter for iPhone This is Cooper. He likes to stick his tongue out at you and then laugh about it. 12/10 quite the jokester https://t.co/O9iGgvfuzl https://twitter.com/dog_rates/status/808001312164028416/photo/1,https://twitter.com/dog_rates/status/808001312164028416/photo/1 12 10 Cooper
533 807621403335917568 2016-12-10 16:22:02 Twitter for iPhone This is Ollie Vue. He was a 3 legged pupper on a mission to overcome everything. This is very hard to write. 14/10 we will miss you Ollie https://t.co/qTRY2qX9y4 https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1 14 10 Ollie pupper pupper
534 807106840509214720 2016-12-09 06:17:20 Twitter for iPhone This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d https://twitter.com/dog_rates/status/807106840509214720/video/1 13 10 Stephan
536 807010152071229440 2016-12-08 23:53:08 Twitter for iPhone This is Lennon. He's a Boopershnoop Pupperdoop. Quite rare. Exceptionally pettable. 12/10 would definitely boop that shnoop https://t.co/fhgP6vSfhX https://twitter.com/dog_rates/status/807010152071229440/photo/1 12 10 Lennon
537 806629075125202948 2016-12-07 22:38:52 Twitter for iPhone "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1 13 10 NaN
539 806576416489959424 2016-12-07 19:09:37 Twitter for iPhone Hooman catch successful. Massive hit by dog. Fumble ensued. Possession to dog. 13/10 https://t.co/QrFkqgHR1G https://twitter.com/deadspin/status/806570933175652352 13 10 NaN
540 806542213899489280 2016-12-07 16:53:43 Twitter for iPhone This is Waffles. He's concerned that the dandruff shampoo he just bought is faulty. 11/10 tragic af https://t.co/BCB87qUU0h https://twitter.com/dog_rates/status/806542213899489280/photo/1 11 10 Waffles
542 806219024703037440 2016-12-06 19:29:28 Twitter for iPhone We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi https://twitter.com/dog_rates/status/806219024703037440/photo/1 11 10 incredibly
544 805932879469572096 2016-12-06 00:32:26 Twitter for iPhone This is Major. He put on a tie for his first real walk. Only a little crooked. Can also drool upwards. H*ckin talented. 12/10 https://t.co/Zcwr8LgoO8 https://twitter.com/dog_rates/status/805932879469572096/photo/1 12 10 Major
545 805826884734976000 2016-12-05 17:31:15 Twitter for iPhone This is Duke. He is not a fan of the pupporazzi. 12/10 https://t.co/SgpBVYIL18 https://twitter.com/dog_rates/status/805826884734976000/video/1 12 10 Duke
547 805520635690676224 2016-12-04 21:14:20 Twitter for iPhone This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1 13 10 Zeke
548 805487436403003392 2016-12-04 19:02:24 Twitter for iPhone Meet Sansa and Gary. They run along the fence together everyday, so the owners installed a window for them. Both 12/10 h*ckin romantic af https://t.co/1JUduNuaWl https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1 12 10 Sansa
549 805207613751304193 2016-12-04 00:30:29 Twitter for iPhone This is Shooter. He's doing quite the snowy zoom. 12/10 https://t.co/lHy4Xbyhd9 https://twitter.com/dog_rates/status/805207613751304193/photo/1 12 10 Shooter
550 804738756058218496 2016-12-02 17:27:25 Twitter for iPhone This is Django. He accidentally opened the front facing camera. Did him quite the frighten. 12/10 https://t.co/kQVQoOW9NZ https://twitter.com/dog_rates/status/804738756058218496/photo/1 12 10 Django
551 804475857670639616 2016-12-02 00:02:45 Twitter for iPhone HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13/10\nhttps://t.co/LEZ8jR5txd https://twitter.com/bvuepd/status/804417859124273152 13 10 NaN
553 804026241225523202 2016-11-30 18:16:08 Twitter for iPhone This is Bo. He's going to make me cry. 13/10 please get off the bus for him Carly https://t.co/U7FvBZo6Bq https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1 13 10 Bo
554 803773340896923648 2016-11-30 01:31:12 Twitter for iPhone This is Diogi. He fell in the pool as soon as he was brought home. Clumsy puppo. 12/10 would pet until dry https://t.co/ZxeRjMKaWt https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1 12 10 Diogi puppo puppo
556 803638050916102144 2016-11-29 16:33:36 Twitter for iPhone Pupper hath acquire enemy. 13/10 https://t.co/ns9qoElfsX https://twitter.com/dog_rates/status/803638050916102144/video/1 13 10 NaN pupper pupper
557 803380650405482500 2016-11-28 23:30:47 Twitter for iPhone Meet Sonny. He's an in-home movie critic. That is his collection. He's very proud of it. 12/10 https://t.co/yPbCALoy2n https://twitter.com/dog_rates/status/803380650405482500/photo/1 12 10 Sonny
559 803276597545603072 2016-11-28 16:37:19 Twitter for iPhone This is Winston. His selfie game is legendary. Will steal your girl with a single snap. 11/10 handsome as h*ck https://t.co/jxQhxoPsgL https://twitter.com/dog_rates/status/803276597545603072/photo/1 11 10 Winston
560 802952499103731712 2016-11-27 19:09:28 Twitter for iPhone This is Marley. She's having a ruff day. Pretty pupset. 12/10 would assist https://t.co/yLm7hQ6UXh https://twitter.com/dog_rates/status/802952499103731712/photo/1 12 10 Marley
562 802600418706604034 2016-11-26 19:50:26 Vine - Make a Scene This is Bailey. She has mastered the head tilt. 11/10 rather h*ckin adorable https://t.co/urhl90ZE1O https://vine.co/v/5FwUWjYaW0Y 11 10 Bailey
563 802572683846291456 2016-11-26 18:00:13 Twitter for iPhone This is Winnie. She's h*ckin ferocious. Dandelion doesn't even see her coming. 12/10 would pet with caution https://t.co/EFfLCP7oQv https://twitter.com/dog_rates/status/802572683846291456/photo/1 12 10 Winnie
564 802323869084381190 2016-11-26 01:31:31 Twitter for iPhone This is Severus. He's here to fix your cable. Looks like he succeeded. Even offered to pupgrade your plan. 13/10 h*ckin helpful https://t.co/aX4brLLpWZ https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1 13 10 Severus
567 802239329049477120 2016-11-25 19:55:35 Twitter for iPhone This is Loki. He'll do your taxes for you. Can also make room in your budget for all the things you bought today. 12/10 what a puppo https://t.co/5oWrHCWg87 https://twitter.com/dog_rates/status/802239329049477120/photo/1,https://twitter.com/dog_rates/status/802239329049477120/photo/1 12 10 Loki puppo puppo
569 801958328846974976 2016-11-25 01:18:59 Twitter for iPhone This is Ronnie. He hopes you're having a great day. Nifty tongue slip. 12/10 would pat head approvingly https://t.co/4fY2bsAm65 https://twitter.com/dog_rates/status/801958328846974976/photo/1 12 10 Ronnie
571 801538201127157760 2016-11-23 21:29:33 Twitter for iPhone This is Wallace. He'll be your chau-fur this evening. 12/10 eyes on the road Wallace https://t.co/p1RD39XjUe https://twitter.com/dog_rates/status/801538201127157760/photo/1 12 10 Wallace
572 801285448605831168 2016-11-23 04:45:12 Twitter for iPhone oh h*ck 10/10 https://t.co/bC69RrW559 https://twitter.com/dog_rates/status/801285448605831168/photo/1 10 10 NaN
573 801167903437357056 2016-11-22 20:58:07 Twitter for iPhone This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey https://twitter.com/dog_rates/status/801167903437357056/photo/1 13 10 Milo
575 801115127852503040 2016-11-22 17:28:25 Twitter for iPhone This is Bones. He's being haunted by another doggo of roughly the same size. 12/10 deep breaths pupper everything's fine https://t.co/55Dqe0SJNj https://twitter.com/dog_rates/status/801115127852503040/photo/1,https://twitter.com/dog_rates/status/801115127852503040/photo/1 12 10 Bones doggo pupper doggopupper
578 800751577355128832 2016-11-21 17:23:47 Twitter for iPhone Say hello to Mauve and Murphy. They're rather h*ckin filthy. Preferred nap over bath. Both 12/10 https://t.co/4UwCTW3lXG https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1 12 10 Mauve
579 800513324630806528 2016-11-21 01:37:04 Twitter for iPhone This is Chef. Chef loves everyone and wants everyone to love each other. 11/10 https://t.co/ILHGs0e6Dm https://twitter.com/dog_rates/status/800513324630806528/photo/1 11 10 Chef
580 800459316964663297 2016-11-20 22:02:27 Twitter for iPhone Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely https://t.co/61sX7pW5Ca https://twitter.com/dog_rates/status/800459316964663297/photo/1 12 10 NaN pupper pupper
582 800388270626521089 2016-11-20 17:20:08 Twitter for iPhone This is Doc. He takes time out of every day to worship our plant overlords. 12/10 quite the floofer https://t.co/azMneS6Ly5 https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1 12 10 Doc floofer floofer
584 800141422401830912 2016-11-20 00:59:15 Twitter for iPhone This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1 13 10 Peaches
585 800018252395122689 2016-11-19 16:49:49 Twitter for iPhone Here's a doggo doin a struggle. 11/10 much determined https://t.co/gQqRBfkX4I https://twitter.com/dog_rates/status/800018252395122689/video/1 11 10 NaN doggo doggo
587 799757965289017345 2016-11-18 23:35:32 Twitter for iPhone This is Sobe. She's a h*ckin happy doggo. Only one leg tho. Must have good balance. 13/10 would smile back https://t.co/OiH8PaOxB1 https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1 13 10 Sobe doggo doggo
588 799422933579902976 2016-11-18 01:24:14 Twitter for iPhone This is Longfellow (prolly sophisticated). He's a North Appalachian Oatzenjammer. Concerned about wrinkled feets. 12/10 would hug softly https://t.co/bpLuQuxzHZ https://twitter.com/dog_rates/status/799422933579902976/photo/1 12 10 Longfellow
590 799297110730567681 2016-11-17 17:04:16 Twitter for iPhone This is Jeffrey. He's quite the jokester. Takes it too far sometimes. Still 11/10 would pet https://t.co/YDtZcAiMAf https://twitter.com/dog_rates/status/799297110730567681/photo/1,https://twitter.com/dog_rates/status/799297110730567681/photo/1 11 10 Jeffrey
591 799063482566066176 2016-11-17 01:35:54 Twitter for iPhone This is Mister. He only wears the most fashionable af headwear. 11/10 h*ckin stylish https://t.co/BXJFKOVnJm https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1 11 10 Mister
592 798933969379225600 2016-11-16 17:01:16 Twitter for iPhone This is Iroh. He's in a predicament. 12/10 someone help him https://t.co/KJAKO2kXsL https://twitter.com/dog_rates/status/798933969379225600/photo/1,https://twitter.com/dog_rates/status/798933969379225600/photo/1 12 10 Iroh
593 798925684722855936 2016-11-16 16:28:21 Twitter for iPhone This is Shadow. He's a firm believer that they're all good dogs. H*ckin passionate about it too. 11/10 I stand with Shadow https://t.co/8yvpacwBcu https://twitter.com/dog_rates/status/798925684722855936/photo/1 11 10 Shadow
607 798209839306514432 2016-11-14 17:03:50 Twitter for iPhone This is Cooper. His bow tie was too heavy for the front so he moved it to the side. Balanced af now. 13/10 https://t.co/jG1PAFkB81 https://twitter.com/dog_rates/status/798209839306514432/photo/1 13 10 Cooper
608 797971864723324932 2016-11-14 01:18:12 Twitter for iPhone Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af https://t.co/GRWPgNKt2z https://twitter.com/dog_rates/status/797971864723324932/photo/1,https://twitter.com/dog_rates/status/797971864723324932/photo/1 12 10 NaN pupper pupper
609 797545162159308800 2016-11-12 21:02:38 Twitter for iPhone This is Cassie. She steals things. Guilt increases slightly each time. 12/10 would forgive almost immediately https://t.co/Ia19irLwyB https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1 12 10 Cassie
610 797236660651966464 2016-11-12 00:36:46 Twitter for iPhone This is Pancake. She loves Batman and winks like a h*ckin champ. 12/10 real crowd pleaser https://t.co/6kqsAjJNhi https://twitter.com/dog_rates/status/797236660651966464/photo/1,https://twitter.com/dog_rates/status/797236660651966464/photo/1 12 10 Pancake
613 796865951799083009 2016-11-11 00:03:42 Twitter for iPhone This is Tyr. He's just checking on you. Nifty af tongue slip. 12/10 would absolutely pet https://t.co/Jgnuiyvq06 https://twitter.com/dog_rates/status/796865951799083009/photo/1 12 10 Tyr
614 796759840936919040 2016-11-10 17:02:03 Twitter for iPhone Say hello to Romeo. He was just told that it's too cold for the pool. H*ckin nonsense. 11/10 would help fill up https://t.co/6hx7ur6sNI https://twitter.com/dog_rates/status/796759840936919040/photo/1,https://twitter.com/dog_rates/status/796759840936919040/photo/1 11 10 Romeo
616 796484825502875648 2016-11-09 22:49:15 Twitter for iPhone Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere https://t.co/bvkkqOjNDV https://twitter.com/dog_rates/status/796484825502875648/photo/1 12 10 NaN doggo doggo
617 796387464403357696 2016-11-09 16:22:22 Twitter for iPhone This is Snicku. He's having trouble reading because he's a dog. Glasses only helped a little. Nap preferred. 12/10 would snug well https://t.co/cVLUasbKA5 https://twitter.com/dog_rates/status/796387464403357696/photo/1,https://twitter.com/dog_rates/status/796387464403357696/photo/1 12 10 Snicku
619 796149749086875649 2016-11-09 00:37:46 Twitter for iPhone This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1 11 10 Ruby
620 796125600683540480 2016-11-08 23:01:49 Twitter for iPhone #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 https://twitter.com/king5seattle/status/796123679771897856 13 10 NaN
621 796116448414461957 2016-11-08 22:25:27 Twitter for iPhone I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 https://t.co/7i0bDMbrVN https://twitter.com/dog_rates/status/796116448414461957/photo/1 11 10 NaN
622 796080075804475393 2016-11-08 20:00:55 Twitter for iPhone This is Yogi. He's 98% floof. Snuggable af. 12/10 https://t.co/opoXKxmfFm https://twitter.com/dog_rates/status/796080075804475393/photo/1 12 10 Yogi
623 796031486298386433 2016-11-08 16:47:50 Twitter for iPhone This is Daisy. She's here to make your day better. 13/10 mission h*ckin successful https://t.co/PbgvuD0qIL https://twitter.com/dog_rates/status/796031486298386433/photo/1 13 10 Daisy
624 795464331001561088 2016-11-07 03:14:10 Twitter for iPhone Elder doggo does a splash. Both 13/10 incredible stuff https://t.co/gBUDjdEcqz https://twitter.com/dog_rates/status/795464331001561088/video/1 13 10 NaN doggo doggo
625 795400264262053889 2016-11-06 22:59:35 Twitter for iPhone This is Brody. He's trying to make the same face as the football. 12/10 https://t.co/2H4MfOGlpQ https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1 12 10 Brody
626 795076730285391872 2016-11-06 01:33:58 Twitter for iPhone This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1 11 10 Bailey
628 794926597468000259 2016-11-05 15:37:24 Twitter for iPhone This is Mack. He's rather h*ckin sleepy. Exceptional ears. 12/10 would boop https://t.co/XRPvTPF0VH https://twitter.com/dog_rates/status/794926597468000259/photo/1 12 10 Mack
630 794332329137291264 2016-11-04 00:15:59 Twitter for iPhone This is Nimbus (like the cloud). He just bought this fancy af duck raincoat. Only protects one ear tho. 12/10 so h*ckin floofy https://t.co/SIQbb8c3AU https://twitter.com/dog_rates/status/794332329137291264/photo/1 12 10 Nimbus
631 794205286408003585 2016-11-03 15:51:10 Twitter for iPhone This is Laika. She was a space pupper. The first space pupper actually. Orbited earth like a h*ckin boss. 14/10 hero af https://t.co/trSjgY3h4g https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1 14 10 Laika pupper pupper
632 793962221541933056 2016-11-02 23:45:19 Twitter for iPhone This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 12 10 Maximus
633 793845145112371200 2016-11-02 16:00:06 Twitter for iPhone This is Clark. He was just caught wearing pants. 13/10 game-changing af https://t.co/2Xo19aPrG5 https://twitter.com/dog_rates/status/793845145112371200/photo/1 13 10 Clark
635 793601777308463104 2016-11-01 23:53:02 Twitter for iPhone This is Dobby. I can't stop looking at her feet. 12/10 would absolutely snug https://t.co/LhzPWv6rTv https://twitter.com/dog_rates/status/793601777308463104/photo/1 12 10 Dobby
636 793500921481273345 2016-11-01 17:12:16 Twitter for iPhone This is Fiona. She's an extremely mediocre copilot. Very distracting. Wink makes up for all the missed turns. 12/10 https://t.co/aF5MmpvPqN https://twitter.com/dog_rates/status/793500921481273345/photo/1,https://twitter.com/dog_rates/status/793500921481273345/photo/1 12 10 Fiona
637 793286476301799424 2016-11-01 03:00:09 Twitter for iPhone This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1 13 10 Moreton
638 793271401113350145 2016-11-01 02:00:14 Twitter for iPhone Meet Dave. It's his favorite day of the year. He gets to fulfill his dream of being a dinosaur. 12/10 inspirational af https://t.co/MgQSdfZGPN https://twitter.com/dog_rates/status/793271401113350145/photo/1 12 10 Dave
639 793256262322548741 2016-11-01 01:00:05 Twitter for iPhone Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked https://t.co/BNy9IIJMb0 https://twitter.com/dog_rates/status/793256262322548741/photo/1 12 10 NaN
640 793241302385262592 2016-11-01 00:00:38 Twitter for iPhone This is Tucker. He's out here bustin h*ckin ghosts. 13/10 dedicated af https://t.co/Ap477GhwXt https://twitter.com/dog_rates/status/793241302385262592/photo/1 13 10 Tucker
641 793226087023144960 2016-10-31 23:00:11 Twitter for iPhone This is Juno. She spooked me up real good, but only to get my attention. Above average handwriting for a dog I think. 11/10 https://t.co/hFxxBCWlwj https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1 11 10 Juno
642 793210959003287553 2016-10-31 22:00:04 Twitter for iPhone This is Maude. She's the h*ckin happiest wasp you've ever seen. 10/10 would pet with caution https://t.co/etL8FHBrh8 https://twitter.com/dog_rates/status/793210959003287553/photo/1 10 10 Maude
643 793195938047070209 2016-10-31 21:00:23 Twitter for iPhone Say hello to Lily. She's pupset that her costume doesn't fit as well as last year. 12/10 poor puppo https://t.co/YSi6K1firY https://twitter.com/dog_rates/status/793195938047070209/photo/1,https://twitter.com/dog_rates/status/793195938047070209/photo/1 12 10 Lily puppo puppo
644 793180763617361921 2016-10-31 20:00:05 Twitter for iPhone This is Newt. He's a strawberry. 11/10 https://t.co/2VhmlwxA1Q https://twitter.com/dog_rates/status/793180763617361921/photo/1 11 10 Newt
645 793165685325201412 2016-10-31 19:00:10 Twitter for iPhone This is Benji. He's Air Bud. It's a low effort costume but he pulls it off rather h*ckin well. 12/10 would happily get dunked on https://t.co/IbzT7DJvBo https://twitter.com/dog_rates/status/793165685325201412/photo/1 12 10 Benji
646 793150605191548928 2016-10-31 18:00:14 Twitter for iPhone This is Nida. She's a free elf. Waited so long for this day. 11/10 https://t.co/3lE8Izgmkf https://twitter.com/dog_rates/status/793150605191548928/photo/1 11 10 Nida
647 793135492858580992 2016-10-31 17:00:11 Twitter for iPhone Your favorite squad is looking extra h*ckin spooky today. 13/10 for all https://t.co/PrgvOyPtDT https://twitter.com/dog_rates/status/793135492858580992/photo/1,https://twitter.com/dog_rates/status/793135492858580992/photo/1 13 10 NaN
648 793120401413079041 2016-10-31 16:00:13 Twitter for iPhone This is Robin. She's desperately trying to do me a frighten, but her tongue drastically decreases her spook value. Still 11/10 great effort https://t.co/sxMrsOZ8zb https://twitter.com/dog_rates/status/793120401413079041/photo/1 11 10 Robin
649 792913359805018113 2016-10-31 02:17:31 Twitter for iPhone Here is a perfect example of someone who has their priorities in order. 13/10 for both owner and Forrest https://t.co/LRyMrU7Wfq https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1 13 10 NaN
650 792883833364439040 2016-10-31 00:20:11 Twitter for iPhone This is Bailey. She's rather h*ckin hype for Halloween tomorrow. Carved those pupkins herself. 12/10 https://t.co/v17mFm0Ftz https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1 12 10 Bailey
651 792773781206999040 2016-10-30 17:02:53 Twitter for iPhone This is Monster. Not an actual monster tho. He's showing you his tongue. Very impressive Monster. 12/10 would snug https://t.co/RhaPExuxJL https://twitter.com/dog_rates/status/792773781206999040/photo/1 12 10 Monster
652 792394556390137856 2016-10-29 15:55:58 Twitter for iPhone Meet BeBe. She rocks the messy bun of your dreams. H*ckin flawless. 12/10 would watch her tutorial https://t.co/of0pFNBIl8 https://twitter.com/dog_rates/status/792394556390137856/photo/1,https://twitter.com/dog_rates/status/792394556390137856/photo/1 12 10 BeBe
653 792050063153438720 2016-10-28 17:07:05 Twitter for iPhone This is Remus. He's a mop that came to life. Can't see anything. Constantly trips over himself. Still a very good dog. 11/10 https://t.co/S3f1SYylzu https://twitter.com/dog_rates/status/792050063153438720/photo/1,https://twitter.com/dog_rates/status/792050063153438720/photo/1 11 10 Remus
657 791774931465953280 2016-10-27 22:53:48 Vine - Make a Scene Vine will be deeply missed. This was by far my favorite one. 14/10 https://t.co/roqIxCvEB3 https://vine.co/v/ea0OwvPTx9l 14 10 NaN
658 791672322847637504 2016-10-27 16:06:04 Twitter for iPhone When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh https://twitter.com/dog_rates/status/791672322847637504/photo/1 13 10 NaN
659 791406955684368384 2016-10-26 22:31:36 Twitter for iPhone Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets https://t.co/Zcw9Sccctc https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1 12 10 Levi
660 791312159183634433 2016-10-26 16:14:55 Twitter for iPhone This is Mabel. She's super h*ckin smol. Portable af. Comes with the smol shoe. 12/10 would keep in frocket https://t.co/GGJvxYt3xK https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1 12 10 Mabel
662 790987426131050500 2016-10-25 18:44:32 Twitter for iPhone This is Misty. She has a cowboy hat on her nose. 12/10 https://t.co/Eno0mypHIr https://twitter.com/dog_rates/status/790987426131050500/photo/1 12 10 Misty
663 790946055508652032 2016-10-25 16:00:09 Twitter for iPhone This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI https://twitter.com/dog_rates/status/790946055508652032/photo/1 12 10 Betty puppo puppo
665 790698755171364864 2016-10-24 23:37:28 Twitter for iPhone This is Mosby. He appears to be rather h*ckin snuggable af. 12/10 keep it up Mosby https://t.co/IiiBq460I7 https://twitter.com/dog_rates/status/790698755171364864/photo/1 12 10 Mosby
666 790581949425475584 2016-10-24 15:53:19 Twitter for iPhone This is Duke. He sneaks into the fridge sometimes. It's his safe place. 11/10 would give little jacket if necessary https://t.co/Fd5WFDTMH4 https://twitter.com/dog_rates/status/790581949425475584/photo/1,https://twitter.com/dog_rates/status/790581949425475584/photo/1 11 10 Duke
667 790337589677002753 2016-10-23 23:42:19 Twitter for iPhone Meet Maggie. She can hear your cells divide. 12/10 can also probably fly https://t.co/ovE2hqXryV https://twitter.com/dog_rates/status/790337589677002753/photo/1 12 10 Maggie
668 790277117346975746 2016-10-23 19:42:02 Twitter for iPhone This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 https://twitter.com/dog_rates/status/790277117346975746/photo/1 11 10 Bruce
670 789986466051088384 2016-10-23 00:27:05 Twitter for iPhone This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v https://twitter.com/dog_rates/status/789986466051088384/photo/1 12 10 Happy
672 789903600034189313 2016-10-22 18:57:48 Vine - Make a Scene This is Ralphy. His dreams were just shattered. Poor pupper. 13/10 it'll be ok Ralphy https://t.co/P0kSN6rT6H https://vine.co/v/5wPT1aBxPQZ 13 10 Ralphy pupper pupper
673 789628658055020548 2016-10-22 00:45:17 Twitter for iPhone This is Eli. He can fly. 13/10 magical af https://t.co/huPSJJ7FDI https://twitter.com/dog_rates/status/789628658055020548/photo/1 13 10 Eli
674 789599242079838210 2016-10-21 22:48:24 Twitter for iPhone This is Brownie. She's wearing a Halloween themed onesie. 12/10 festive af https://t.co/0R4meWXFOx https://twitter.com/dog_rates/status/789599242079838210/photo/1,https://twitter.com/dog_rates/status/789599242079838210/photo/1 12 10 Brownie
675 789530877013393408 2016-10-21 18:16:44 Twitter for iPhone This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1 12 10 Rizzy
676 789314372632018944 2016-10-21 03:56:25 Twitter for iPhone HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOOD DOGGI ALL THE TIME MISTAKES HAPPEN 13/10\nhttps://t.co/G2ms0A5jWM https://twitter.com/sebscat/status/788818328538099712 13 10 NaN
678 789268448748703744 2016-10-21 00:53:56 Twitter for iPhone This is Stella. She's happier than I will ever be. 10/10 would trade lives with https://t.co/JSs2bfDtTS https://twitter.com/dog_rates/status/789268448748703744/photo/1 10 10 Stella
679 789137962068021249 2016-10-20 16:15:26 Twitter for iPhone This is Bo. He's a West Congolese Bugaboop Snuggle. Rather exotic. Master of the head tilt. 12/10 would pay to pet https://t.co/2jwxxtNzoN https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1 12 10 Bo
680 788908386943430656 2016-10-20 01:03:11 Twitter for iPhone This is Lucy. She destroyed not one, but two remotes trying to turn off the debate. 11/10 relatable af https://t.co/3BXh073tDm https://twitter.com/dog_rates/status/788908386943430656/photo/1 11 10 Lucy
681 788765914992902144 2016-10-19 15:37:03 Twitter for iPhone This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq https://twitter.com/dog_rates/status/788765914992902144/photo/1 12 10 Butter
683 788412144018661376 2016-10-18 16:11:17 Twitter for iPhone This is Dexter. He breaks hearts for a living. 11/10 h*ckin handsome af https://t.co/4DhSsC1W7S https://twitter.com/dog_rates/status/788412144018661376/photo/1,https://twitter.com/dog_rates/status/788412144018661376/photo/1 11 10 Dexter
684 788178268662984705 2016-10-18 00:41:57 Twitter for iPhone Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af https://t.co/s7MgFWDySc https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1 13 10 NaN
685 788150585577050112 2016-10-17 22:51:57 Twitter for iPhone This is Leo. He's a golden chow. Rather h*ckin rare. 13/10 would give extra pats https://t.co/xosHjFzVXc https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1 13 10 Leo
687 788039637453406209 2016-10-17 15:31:05 Twitter for iPhone Did... did they pick out that license plate? 12/10 for both https://t.co/lRmUUOxgbQ https://twitter.com/dog_rates/status/788039637453406209/photo/1,https://twitter.com/dog_rates/status/788039637453406209/photo/1 12 10 NaN
688 787810552592695296 2016-10-17 00:20:47 Twitter for iPhone This is Frank. He wears sunglasses and walks himself. 11/10 I'll never be this cool or independent https://t.co/pNNjBtHWPc https://twitter.com/dog_rates/status/787810552592695296/photo/1,https://twitter.com/dog_rates/status/787810552592695296/photo/1 11 10 Frank
689 787717603741622272 2016-10-16 18:11:26 Twitter for iPhone This is Tonks. She is a service puppo. Can hear a caterpillar hiccup from 7 miles away. 13/10 would follow anywhere https://t.co/i622ZbWkUp https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1 13 10 Tonks puppo puppo
690 787397959788929025 2016-10-15 21:01:17 Twitter for iPhone This is Moose. He's rather h*ckin dangerous (you can tell by the collar). 11/10 would still attempt to snug https://t.co/lHVHGdDzb3 https://twitter.com/dog_rates/status/787397959788929025/photo/1 11 10 Moose
691 787322443945877504 2016-10-15 16:01:13 Twitter for iPhone This is Lincoln. He forgot to use his blinker when he changed lanes just now. Guilty as h*ck. Still 10/10 https://t.co/lsrR83SiVp https://twitter.com/dog_rates/status/787322443945877504/photo/1 10 10 Lincoln
693 786963064373534720 2016-10-14 16:13:10 Twitter for iPhone This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj https://twitter.com/dog_rates/status/786963064373534720/photo/1 12 10 Rory
695 786709082849828864 2016-10-13 23:23:56 Twitter for iPhone This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS https://twitter.com/dog_rates/status/786709082849828864/photo/1 75 10 Logan
696 786664955043049472 2016-10-13 20:28:35 Twitter for iPhone "Honestly Kathleen I just want more Ken Bone" 12/10 https://t.co/HmlEvAMP4r https://twitter.com/dog_rates/status/786664955043049472/photo/1 12 10 NaN
697 786595970293370880 2016-10-13 15:54:28 Twitter for iPhone This is Dale. He's a real spookster. Did me quite the frighten. 11/10 not too spooky to pet tho https://t.co/L8BWDD4oBX https://twitter.com/dog_rates/status/786595970293370880/photo/1 11 10 Dale
698 786363235746385920 2016-10-13 00:29:39 Twitter for iPhone This is Rizzo. He has many talents. A true renaissance doggo. 13/10 entertaining af https://t.co/TVXpEJB7Wn https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1 13 10 Rizzo doggo doggo
699 786286427768250368 2016-10-12 19:24:27 Vine - Make a Scene This is Arnie. He's afraid of his own bark. 12/10 would comfort https://t.co/ObT2tSxXit https://vine.co/v/5XH0WqHwiFp 12 10 Arnie
700 786233965241827333 2016-10-12 15:55:59 Twitter for iPhone This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh https://twitter.com/dog_rates/status/786233965241827333/photo/1 11 10 Mattie
703 785927819176054784 2016-10-11 19:39:28 Twitter for iPhone This is Lucy. She's strives to be the best potato she can be. 12/10 would boop https://t.co/lntsj7Fc4Y https://twitter.com/dog_rates/status/785927819176054784/photo/1 12 10 Lucy
704 785872687017132033 2016-10-11 16:00:24 Twitter for iPhone Meet Rusty. He appears to be rather h*ckin fluffy. Also downright adorable af. 12/10 would rub my face against his https://t.co/1j9kLGb4wV https://twitter.com/dog_rates/status/785872687017132033/video/1 12 10 Rusty
705 785639753186217984 2016-10-11 00:34:48 Twitter for iPhone This is Pinot. He's a sophisticated doggo. You can tell by the hat. Also pointier than your average pupper. Still 10/10 would pet cautiously https://t.co/f2wmLZTPHd https://twitter.com/dog_rates/status/785639753186217984/photo/1,https://twitter.com/dog_rates/status/785639753186217984/photo/1 10 10 Pinot doggo pupper doggopupper
706 785533386513321988 2016-10-10 17:32:08 Twitter for iPhone This is Dallas. Her tongue is ridiculous. 11/10 h*ckin proud af https://t.co/h4jhlH4EyG https://twitter.com/dog_rates/status/785533386513321988/photo/1,https://twitter.com/dog_rates/status/785533386513321988/photo/1 11 10 Dallas
707 785515384317313025 2016-10-10 16:20:36 Twitter for iPhone Today, 10/10, should be National Dog Rates Day NaN 10 10 NaN
708 785264754247995392 2016-10-09 23:44:41 Twitter for iPhone This is Doc. He requested to be carried around like that. 12/10 anything for Doc https://t.co/mWYACm4qnx https://twitter.com/dog_rates/status/785264754247995392/photo/1 12 10 Doc
709 785170936622350336 2016-10-09 17:31:53 Twitter for iPhone This is Hero. He was enjoying the car ride until he remembered that bees are dying globally at an alarming rate. 11/10 https://t.co/cubFg7F4qQ https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1 11 10 Hero
710 784826020293709826 2016-10-08 18:41:19 Twitter for iPhone This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ https://twitter.com/dog_rates/status/784826020293709826/photo/1 13 10 Rusty
711 784517518371221505 2016-10-07 22:15:26 Twitter for iPhone This is Frankie. He has yet to learn how to control his tongue. 11/10 maybe one day https://t.co/p6fgYe2dB6 https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1 11 10 Frankie
712 784431430411685888 2016-10-07 16:33:21 Twitter for iPhone This is Stormy. He's curly af. Already pupared for Coachella next year. 12/10 https://t.co/PHA1vtqqpt https://twitter.com/dog_rates/status/784431430411685888/photo/1 12 10 Stormy
713 784183165795655680 2016-10-07 00:06:50 Vine - Make a Scene This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ https://vine.co/v/5ghHLBMMdlV 12 10 Reginald puppo puppo
714 784057939640352768 2016-10-06 15:49:14 Vine - Make a Scene This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC https://vine.co/v/5gKxeUpuKEr 12 10 Balto
715 783839966405230592 2016-10-06 01:23:05 Twitter for iPhone This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https://t.co/8TCQcsZCZ8 https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1 13 10 Riley
716 783821107061198850 2016-10-06 00:08:09 Twitter for iPhone This is Mairi. She has mastered the art of camouflage. 12/10 h*ckin sneaky af https://t.co/STcPjiNAHp https://twitter.com/dog_rates/status/783821107061198850/photo/1,https://twitter.com/dog_rates/status/783821107061198850/photo/1 12 10 Mairi
717 783695101801398276 2016-10-05 15:47:27 Twitter for iPhone This is Loomis. He's the leader of the Kenneth search party. The passion is almost overwhelming. 12/10 one day he will be free https://t.co/kCRKlFg4AY https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1 12 10 Loomis
718 783466772167098368 2016-10-05 00:40:09 Twitter for iPhone This is Finn. He likes eavesdropping from filing cabinets. It's a real issue but no one has approached him about it. 11/10 would still pet https://t.co/s8W8Del9HQ https://twitter.com/dog_rates/status/783466772167098368/photo/1,https://twitter.com/dog_rates/status/783466772167098368/photo/1 11 10 Finn
719 783391753726550016 2016-10-04 19:42:03 Twitter for iPhone Meet Godi. He's an avid beachgoer and part time rainbow summoner. Eyeliner flawless af. 13/10 would snug well https://t.co/BO936YdJdi https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1 13 10 Godi
721 783334639985389568 2016-10-04 15:55:06 Twitter for iPhone This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1 12 10 Dave
722 783085703974514689 2016-10-03 23:25:55 Twitter for iPhone This is Earl. He can't catch. Did his best tho. 11/10 would repair confidence with extra pats https://t.co/IsqyvbjFgM https://twitter.com/dog_rates/status/783085703974514689/photo/1,https://twitter.com/dog_rates/status/783085703974514689/photo/1 11 10 Earl
723 782969140009107456 2016-10-03 15:42:44 Twitter for iPhone This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1 12 10 Cali
724 782747134529531904 2016-10-03 01:00:34 Twitter for iPhone This is Deacon. He's the happiest almost dry doggo I've ever seen. 11/10 would smile back https://t.co/C6fUMnHt1H https://twitter.com/dog_rates/status/782747134529531904/photo/1 11 10 Deacon doggo doggo
725 782722598790725632 2016-10-02 23:23:04 Twitter for iPhone This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 https://twitter.com/dog_rates/status/782722598790725632/photo/1 10 10 Penny
726 782598640137187329 2016-10-02 15:10:30 Twitter for iPhone This is Timmy. He's quite large. According to a trusted source it's actually a dog wearing a dog suit. 11/10 https://t.co/BIUchFwHqn https://twitter.com/dog_rates/status/782598640137187329/photo/1 11 10 Timmy
727 782305867769217024 2016-10-01 19:47:08 Twitter for iPhone This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1 https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1 12 10 Sampson doggo doggo
729 781955203444699136 2016-09-30 20:33:43 Twitter for iPhone This is Chipson. He weighed in at .3 ounces and is officially super h*ckin smol. Space-saving af. 11/10 would snug delicately https://t.co/FjEsk7A1JV https://twitter.com/dog_rates/status/781955203444699136/photo/1 11 10 Chipson
730 781661882474196992 2016-09-30 01:08:10 Twitter for iPhone Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road https://t.co/ELqelxWMrC https://twitter.com/dog_rates/status/781661882474196992/photo/1 5 10 NaN
731 781655249211752448 2016-09-30 00:41:48 Vine - Make a Scene This is Combo. The daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/LOKrNo0OM7 https://vine.co/v/5rt6T3qm7hL 11 10 Combo doggo doggo
732 781524693396357120 2016-09-29 16:03:01 Twitter for iPhone Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.co/ya7bviQUUf https://twitter.com/dog_rates/status/781524693396357120/photo/1 12 10 NaN
733 781308096455073793 2016-09-29 01:42:20 Vine - Make a Scene Pupper butt 1, Doggo 0. Both 12/10 https://t.co/WQvcPEpH2u https://vine.co/v/5rgu2Law2ut 12 10 NaN doggo pupper doggopupper
734 781251288990355457 2016-09-28 21:56:36 Twitter for iPhone This is Oakley. He just got yelled at for going 46 in a 45. Churlish af. 11/10 would still pet so well https://t.co/xIYsa6LPA4 https://twitter.com/dog_rates/status/781251288990355457/photo/1,https://twitter.com/dog_rates/status/781251288990355457/photo/1 11 10 Oakley
735 781163403222056960 2016-09-28 16:07:23 Twitter for iPhone We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution https://t.co/YkHc7U7uUy https://twitter.com/dog_rates/status/781163403222056960/photo/1 10 10 NaN
736 780931614150983680 2016-09-28 00:46:20 Twitter for iPhone I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5dUYOu4b8d https://twitter.com/dog_rates/status/780931614150983680/photo/1 13 10 NaN puppo puppo
737 780858289093574656 2016-09-27 19:54:58 Twitter for iPhone This is Dash. He's very stylish, but also incredibly unimpressed with the current state of our nation. 10/10 would pet ears first https://t.co/YElO4hvXI6 https://twitter.com/dog_rates/status/780858289093574656/photo/1 10 10 Dash
738 780800785462489090 2016-09-27 16:06:28 Twitter for iPhone This is Koda. He has a weird relationship with tall grass. Slightly concerning. 11/10 would def still pet https://t.co/KQzSR8eCsw https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1 11 10 Koda
739 780601303617732608 2016-09-27 02:53:48 Twitter for iPhone Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG https://twitter.com/dog_rates/status/780601303617732608/photo/1 12 10 Hercules
740 780543529827336192 2016-09-26 23:04:13 Twitter for iPhone Here's a perturbed super floof. 12/10 would snug so damn well https://t.co/VG095mi09Q https://twitter.com/dog_rates/status/780543529827336192/photo/1 12 10 NaN
743 780459368902959104 2016-09-26 17:29:48 Twitter for iPhone This is Bear. Don't worry, he's not a real bear tho. Contains unreal amounts of squish. 11/10 heteroskedastic af https://t.co/coi4l1T2Sm https://twitter.com/dog_rates/status/780459368902959104/photo/1 11 10 Bear
744 780192070812196864 2016-09-25 23:47:39 Twitter for iPhone We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 https://t.co/zHIqpM5Gni https://twitter.com/dog_rates/status/780192070812196864/photo/1 11 10 NaN
746 780074436359819264 2016-09-25 16:00:13 Vine - Make a Scene Here's a doggo questioning his entire existence. 10/10 someone tell him he's a good boy https://t.co/dVm5Hgdpeb https://vine.co/v/5nzYBpl0TY2 10 10 NaN doggo doggo
747 779834332596887552 2016-09-25 00:06:08 Twitter for iPhone This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1 11 10 Scout
748 779377524342161408 2016-09-23 17:50:56 Twitter for iPhone Have you ever seen such a smol pupper? Portable af. 12/10 would keep in shirt pocket https://t.co/KsqaIzlQ12 https://twitter.com/dog_rates/status/779377524342161408/video/1 12 10 NaN pupper pupper
750 779123168116150273 2016-09-23 01:00:13 Twitter for iPhone This is Reggie. He hugs everyone he meets. 12/10 keep spreading the love Reggie https://t.co/uMfhduaate https://twitter.com/dog_rates/status/779123168116150273/photo/1 12 10 Reggie
751 779056095788752897 2016-09-22 20:33:42 Twitter for iPhone Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1 13 10 NaN
752 778990705243029504 2016-09-22 16:13:51 Twitter for iPhone This is Jay. He's really h*ckin happy about the start of fall. Sneaky tongue slip in 2nd pic. 11/10 snuggly af https://t.co/vyx1X5eyWI https://twitter.com/dog_rates/status/778990705243029504/photo/1,https://twitter.com/dog_rates/status/778990705243029504/photo/1 11 10 Jay
754 778764940568104960 2016-09-22 01:16:45 Twitter for iPhone Oh my god it's Narcos but Barkos. 13/10 someone please make this happen\nhttps://t.co/tird9cIlzB https://m.youtube.com/watch?v=idKxCMsS3FQ&feature=youtu.be 13 10 NaN
755 778748913645780993 2016-09-22 00:13:04 Twitter for iPhone This is Mya (pronounced "mmmyah?"). Her head is round af. 11/10 would pat accordingly https://t.co/1dpEuALnY0 https://twitter.com/dog_rates/status/778748913645780993/photo/1 11 10 Mya
756 778650543019483137 2016-09-21 17:42:10 Twitter for iPhone Meet Strider. He thinks he's a sorority girl. Already wants to go to NYC for a weekend to say he's "studied abroad" 10/10 https://t.co/KYZkPuiC1l https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1 10 10 Strider
757 778624900596654080 2016-09-21 16:00:17 Twitter for iPhone This is Penny. She's a sailor pup. 11/10 would take to the open seas with https://t.co/0rRxyBQt32 https://twitter.com/dog_rates/status/778624900596654080/photo/1,https://twitter.com/dog_rates/status/778624900596654080/photo/1 11 10 Penny
758 778408200802557953 2016-09-21 01:39:11 Twitter for iPhone RIP Loki. Thank you for the good times. You will be missed by many. 14/10 https://t.co/gJKD9pst5A https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1 14 10 NaN
760 778383385161035776 2016-09-21 00:00:35 Twitter for iPhone This is Nala. She's a future Dogue model. Won't respond to my texts. 13/10 would be an honor to pet https://t.co/zP1IvAATWv https://twitter.com/dog_rates/status/778383385161035776/photo/1 13 10 Nala
761 778286810187399168 2016-09-20 17:36:50 Twitter for iPhone This is Stanley. He has too much skin. Isn't happy about it. Quite pupset actually. Still 11/10 would comfort https://t.co/hhTfnPrWfb https://twitter.com/dog_rates/status/778286810187399168/photo/1,https://twitter.com/dog_rates/status/778286810187399168/photo/1 11 10 Stanley
762 778039087836069888 2016-09-20 01:12:28 Twitter for iPhone Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff https://t.co/t8Y4x9DmVD https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1 12 10 NaN pupper pupper
763 778027034220126208 2016-09-20 00:24:34 Twitter for iPhone This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq https://twitter.com/dog_rates/status/778027034220126208/photo/1 27 10 Sophie pupper pupper
765 777885040357281792 2016-09-19 15:00:20 Twitter for iPhone This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in https://t.co/pL7wbMRW7M https://twitter.com/dog_rates/status/777885040357281792/photo/1,https://twitter.com/dog_rates/status/777885040357281792/photo/1 3 10 Wesley
766 777684233540206592 2016-09-19 01:42:24 Twitter for iPhone "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ https://twitter.com/dog_rates/status/777684233540206592/photo/1 12 10 NaN
768 777621514455814149 2016-09-18 21:33:11 Twitter for iPhone This is Derek. You can't look at him and not smile. Must've just had a blue pupsicle. 12/10 would snug intensely https://t.co/BnVTMtUeI3 https://twitter.com/dog_rates/status/777621514455814149/photo/1 12 10 Derek
769 777189768882946048 2016-09-17 16:57:35 Twitter for iPhone This is Jeffrey. He's being held so he doesn't fly away. 12/10 would set free https://t.co/d3aLyCykn7 https://twitter.com/dog_rates/status/777189768882946048/photo/1,https://twitter.com/dog_rates/status/777189768882946048/photo/1 12 10 Jeffrey
771 776813020089548800 2016-09-16 16:00:31 Twitter for iPhone Meet Solomon. He was arrested for possession of adorable and attempted extra pats on the head. 12/10 would post bail https://t.co/nFqLaOLUQA https://twitter.com/dog_rates/status/776813020089548800/photo/1,https://twitter.com/dog_rates/status/776813020089548800/photo/1 12 10 Solomon
772 776477788987613185 2016-09-15 17:48:25 Twitter for iPhone This is Huck. He's addicted to caffeine. Hope it's not too latte to seek help. 11/10 stay strong pupper https://t.co/iJE3F0VozW https://twitter.com/dog_rates/status/776477788987613185/photo/1,https://twitter.com/dog_rates/status/776477788987613185/photo/1 11 10 Huck pupper pupper
774 776218204058357768 2016-09-15 00:36:55 Twitter for iPhone Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath https://t.co/nzqTNw0744 https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1 13 10 NaN floofer floofer
775 776201521193218049 2016-09-14 23:30:38 Twitter for iPhone This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC https://twitter.com/dog_rates/status/776201521193218049/photo/1 10 10 O
776 776113305656188928 2016-09-14 17:40:06 Twitter for iPhone This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG https://twitter.com/dog_rates/status/776113305656188928/photo/1 11 10 Sampson pupper pupper
777 776088319444877312 2016-09-14 16:00:49 Twitter for iPhone I can't tap the screen to make the hearts appear fast enough. 10/10 for the source of all future unproductiveness https://t.co/wOhuABgj6I https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1 10 10 NaN
779 775842724423557120 2016-09-13 23:44:54 Twitter for iPhone This is Blue. He was having an average day until his owner told him about Bront. 12/10 h*ckin hysterical af https://t.co/saRYTcxQeH https://twitter.com/dog_rates/status/775842724423557120/photo/1,https://twitter.com/dog_rates/status/775842724423557120/photo/1 12 10 Blue
780 775733305207554048 2016-09-13 16:30:07 Twitter for iPhone This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://t.co/9CcBSxCXXG https://twitter.com/dog_rates/status/775733305207554048/photo/1 11 10 Anakin doggo doggo
781 775729183532220416 2016-09-13 16:13:44 Twitter for iPhone This girl straight up rejected a guy because he doesn't like dogs. She is my hero and I give her 13/10 https://t.co/J39lT3b0rH https://twitter.com/dog_rates/status/775729183532220416/photo/1 13 10 NaN
782 775364825476165632 2016-09-12 16:05:54 Twitter for iPhone This is Finley. He's an independent doggo still adjusting to life on his own. 11/10 https://t.co/7FNcBaKbci https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1 11 10 Finley doggo doggo
783 775350846108426240 2016-09-12 15:10:21 Vine - Make a Scene This is Maximus. A little rain won't stop him. He will persevere. 12/10 innovative af https://t.co/2OmDMAkkou https://vine.co/v/ijmv0PD0XXD 12 10 Maximus
785 775085132600442880 2016-09-11 21:34:30 Twitter for iPhone This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT https://twitter.com/dog_rates/status/775085132600442880/photo/1 13 10 Tucker
786 774757898236878852 2016-09-10 23:54:11 Twitter for iPhone This is Finley. She's a Beneboop Cumbersplash. 12/10 I'd do unspeakable things for Finley https://t.co/dS8SCbNF9P https://twitter.com/dog_rates/status/774757898236878852/photo/1 12 10 Finley
787 774639387460112384 2016-09-10 16:03:16 Twitter for iPhone This is Sprinkles. He's trapped in light jail. 10/10 would post bail for him https://t.co/4s5Xlijogu https://twitter.com/dog_rates/status/774639387460112384/photo/1,https://twitter.com/dog_rates/status/774639387460112384/photo/1 10 10 Sprinkles
788 774314403806253056 2016-09-09 18:31:54 Twitter for iPhone I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpfxIH https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1 14 10 NaN
789 773985732834758656 2016-09-08 20:45:53 Twitter for iPhone Meet Winnie. She just made awkward eye contact with the driver beside her. Poor pupper panicked. 11/10 would comfort https://t.co/RFWtDqTnAz https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1 11 10 Winnie pupper pupper
790 773922284943896577 2016-09-08 16:33:46 Twitter for iPhone This is Heinrich (pronounced "Pat"). He's a Botswanian Vanderfloof. Snazzy af bandana. 12/10 downright puptacular https://t.co/G56ikYAqFg https://twitter.com/dog_rates/status/773922284943896577/photo/1 12 10 Heinrich
791 773704687002451968 2016-09-08 02:09:06 Twitter for iPhone This is Loki. He knows he's adorable. One ear always pupared. 12/10 would snug in depicted fashion forever https://t.co/OqNggd4Oio https://twitter.com/dog_rates/status/773704687002451968/photo/1,https://twitter.com/dog_rates/status/773704687002451968/photo/1 12 10 Loki
792 773670353721753600 2016-09-07 23:52:41 Twitter for iPhone This is Shakespeare. He appears to be maximum level pettable. Born with no eyes tho (tragic). 10/10 probably wise https://t.co/rA8WUVOLBr https://twitter.com/dog_rates/status/773670353721753600/photo/1 10 10 Shakespeare
793 773547596996571136 2016-09-07 15:44:53 Twitter for iPhone This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb https://twitter.com/dog_rates/status/773547596996571136/photo/1 11 10 Chelsea pupper pupper
795 773308824254029826 2016-09-06 23:56:05 Twitter for iPhone This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t.co/0Fcft7jl4N https://twitter.com/dog_rates/status/773308824254029826/photo/1 12 10 Bungalo
796 773247561583001600 2016-09-06 19:52:39 Twitter for iPhone This is Chip. He's a pupholder. Comes with the car. Requires frequent pettings. Shifts for you. 10/10 innovative af https://t.co/hG5WYT9ECn https://twitter.com/dog_rates/status/773247561583001600/photo/1 10 10 Chip
797 773191612633579521 2016-09-06 16:10:20 Twitter for iPhone This is Grey. He's the dogtor in charge of your checkpup today. 12/10 I'd never miss an appointment https://t.co/9HEVPJEioD https://twitter.com/dog_rates/status/773191612633579521/photo/1,https://twitter.com/dog_rates/status/773191612633579521/photo/1 12 10 Grey
798 772877495989305348 2016-09-05 19:22:09 Twitter Web Client You need to watch these two doggos argue through a cat door. Both 11/10 https://t.co/qEP31epKEV https://twitter.com/dog_rates/status/772877495989305348/video/1 11 10 NaN
799 772826264096874500 2016-09-05 15:58:34 Twitter for iPhone Meet Roosevelt. He's preparing for takeoff. Make sure tray tables are in their full pupright &amp; licked position\n11/10 https://t.co/7CQkn3gHOQ https://twitter.com/dog_rates/status/772826264096874500/photo/1 11 10 Roosevelt
801 772581559778025472 2016-09-04 23:46:12 Twitter for iPhone Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1 10 10 NaN
802 772193107915964416 2016-09-03 22:02:38 Twitter for iPhone This is Willem. He's a Penn State pupper. Thinks the hood makes him more intimidating. It doesn't. 12/10 https://t.co/Dp0s7MRIHK https://twitter.com/dog_rates/status/772193107915964416/photo/1 12 10 Willem pupper pupper
803 772152991789019136 2016-09-03 19:23:13 Twitter for iPhone Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets https://t.co/H9yjI9eo3A https://twitter.com/dog_rates/status/772152991789019136/photo/1,https://twitter.com/dog_rates/status/772152991789019136/photo/1 10 10 NaN
804 772117678702071809 2016-09-03 17:02:54 Twitter for iPhone Meet Jack. He's a Clemson pup. Appears to be rather h*ckin pettable. Almost makes me want to root for Clemson. 12/10 https://t.co/GHOfbTVQti https://twitter.com/dog_rates/status/772117678702071809/photo/1 12 10 Jack
805 772114945936949249 2016-09-03 16:52:02 Twitter for iPhone This is Finn. He's very nervous for the game. Has a lot of money riding on it.10/10 would attempt to comfort https://t.co/CbtNfecWiT https://twitter.com/dog_rates/status/772114945936949249/photo/1 10 10 Finn
806 772102971039580160 2016-09-03 16:04:27 Twitter for iPhone This is Penny. She's an OU cheerleader. About to do a triple back handspring down the stairs. 11/10 hype af https://t.co/B2f3XkGU5c https://twitter.com/dog_rates/status/772102971039580160/photo/1 11 10 Penny
807 771908950375665664 2016-09-03 03:13:29 Twitter for iPhone Doggo will persevere. 13/10\nhttps://t.co/yOVzAomJ6k https://twitter.com/yahoonews/status/771905568600719360 13 10 NaN doggo doggo
808 771770456517009408 2016-09-02 18:03:10 Twitter for iPhone This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm https://twitter.com/dog_rates/status/771770456517009408/photo/1 11 10 Davey
809 771500966810099713 2016-09-02 00:12:18 Twitter for iPhone This is Dakota. He's just saying hi. That's all. 12/10 someone wave back https://t.co/1tWe5zZoHv https://twitter.com/dog_rates/status/771500966810099713/photo/1 12 10 Dakota
810 771380798096281600 2016-09-01 16:14:48 Twitter for iPhone Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https://t.co/sPB5JMnWBn https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1 11 10 Fizz
812 771136648247640064 2016-09-01 00:04:38 Twitter for iPhone This is Dixie. She wants to be a ship captain. Won't let anything get in between her and her dreams. 11/10 https://t.co/8VEDZKHddR https://twitter.com/dog_rates/status/771136648247640064/photo/1 11 10 Dixie
813 771102124360998913 2016-08-31 21:47:27 Twitter for iPhone This is Charlie. He works for @TODAYshow. Super sneaky tongue slip here. 12/10 would pet until someone made me stop https://t.co/K5Jo7QRCvA https://twitter.com/dog_rates/status/771102124360998913/photo/1 12 10 Charlie
814 771014301343748096 2016-08-31 15:58:28 Twitter for iPhone Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy https://t.co/OJZQ6I4gGd https://twitter.com/dog_rates/status/771014301343748096/photo/1 7 10 NaN
816 770787852854652928 2016-08-31 00:58:39 Twitter for iPhone This is Winston. His tongue has gone rogue. Doing him quite a frighten. 10/10 hang in there Winston https://t.co/d0QEbp78Yi https://twitter.com/dog_rates/status/770787852854652928/photo/1 10 10 Winston
817 770772759874076672 2016-08-30 23:58:40 Twitter for iPhone This is Sebastian. He's super h*ckin fluffy. That's really all you need to know. 11/10 would snug intensely https://t.co/lqr0NdtwQo https://twitter.com/dog_rates/status/770772759874076672/photo/1 11 10 Sebastian
819 770655142660169732 2016-08-30 16:11:18 Twitter for iPhone We only rate dogs. Pls stop sending in non-canines like this Arctic Floof Kangaroo. This is very frustrating. 11/10 https://t.co/qlUDuPoE3d https://twitter.com/dog_rates/status/770655142660169732/photo/1 11 10 very
820 770414278348247044 2016-08-30 00:14:12 Twitter for iPhone Meet Al Cabone. He's a gangsta puppa. Rather h*ckin ruthless. Shows no mercy sometimes. 11/10 pet w extreme caution https://t.co/OUwWbEKOUV https://twitter.com/dog_rates/status/770414278348247044/photo/1 11 10 NaN
821 770293558247038976 2016-08-29 16:14:30 Twitter for iPhone This is Jackson. There's nothing abnormal about him. Just your average really good dog. 10/10 https://t.co/3fEPpj0KYw https://twitter.com/dog_rates/status/770293558247038976/photo/1 10 10 Jackson
823 770069151037685760 2016-08-29 01:22:47 Twitter for iPhone Say hello to Carbon. This is his first time swimming. He's having a h*ckin blast. 10/10 we should all be this happy https://t.co/mADHGenzFS https://twitter.com/dog_rates/status/770069151037685760/photo/1 10 10 Carbon
824 769940425801170949 2016-08-28 16:51:16 Twitter for iPhone This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1 12 10 Klein
825 769695466921623552 2016-08-28 00:37:54 Twitter for iPhone This is Titan. He's trying to make friends. Offering up his favorite stick. 13/10 philanthropic af https://t.co/vhrkz0dK4v https://twitter.com/dog_rates/status/769695466921623552/photo/1 13 10 Titan
827 769212283578875904 2016-08-26 16:37:54 Twitter for iPhone This is DonDon. He's way up but doesn't feel blessed. Rather uncomfortable actually. 12/10 I'll save you DonDon https://t.co/OCYLz3fjVE https://twitter.com/dog_rates/status/769212283578875904/photo/1 12 10 DonDon
828 768970937022709760 2016-08-26 00:38:52 Twitter Web Client This is Kirby. His bowl weighs more than him. 12/10 would assist https://t.co/UlB2mzw3Xs https://twitter.com/dog_rates/status/768970937022709760/video/1 12 10 Kirby
830 768855141948723200 2016-08-25 16:58:45 Twitter for iPhone This is Jesse. He really wants a belly rub. Will be as cute as possible to achieve that goal. 11/10 https://t.co/1BxxcdVNJ8 https://twitter.com/dog_rates/status/768855141948723200/photo/1 11 10 Jesse
831 768609597686943744 2016-08-25 00:43:02 Twitter for iPhone This is Lou. His sweater is too small and he already cut the tags off. Very very churlish. 10/10 would still pet https://t.co/dZPMLresEr https://twitter.com/dog_rates/status/768609597686943744/photo/1 10 10 Lou
832 768596291618299904 2016-08-24 23:50:10 Twitter for iPhone Say hello to Oakley and Charlie. They're convinced that they each have their own stick. Nobody tell them. Both 12/10 https://t.co/J2AJdyxglH https://twitter.com/dog_rates/status/768596291618299904/photo/1 12 10 Oakley
834 768473857036525572 2016-08-24 15:43:39 Twitter for iPhone Meet Chevy. He had a late breakfast and now has to choose between a late lunch or an early dinner. 11/10 very pupset https://t.co/goy9053wC7 https://twitter.com/dog_rates/status/768473857036525572/photo/1 11 10 Chevy
835 768193404517830656 2016-08-23 21:09:14 Twitter for iPhone Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://t.co/WmczvjCWJq https://twitter.com/dog_rates/status/768193404517830656/photo/1 8 10 Gerald doggo doggo
836 767884188863397888 2016-08-23 00:40:31 Twitter for iPhone This is Tito. He's on the lookout. Nobody knows for what. 10/10 https://t.co/Qai481H6RA https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1 10 10 Tito
837 767754930266464257 2016-08-22 16:06:54 Twitter for iPhone This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb68IsVb9O https://twitter.com/dog_rates/status/767754930266464257/photo/1 11 10 Philbert
838 767500508068192258 2016-08-21 23:15:55 Twitter for iPhone This is Louie. He's making quite a h*ckin mess. Doesn't seem to care. 12/10 jubilant af https://t.co/Z2g2YWPzX2 https://twitter.com/dog_rates/status/767500508068192258/photo/1 12 10 Louie
839 767191397493538821 2016-08-21 02:47:37 Twitter for iPhone I don't know any of the backstory behind this picture but for some reason I'm crying. 13/10 for owner and doggo https://t.co/QOKZdus9TT https://twitter.com/dog_rates/status/767191397493538821/photo/1 13 10 NaN doggo doggo
840 767122157629476866 2016-08-20 22:12:29 Twitter for iPhone This is Rupert. You betrayed him with bath time but he forgives you. Cuddly af 13/10 https://t.co/IEARC2sRzC https://twitter.com/dog_rates/status/767122157629476866/photo/1,https://twitter.com/dog_rates/status/767122157629476866/photo/1 13 10 Rupert
842 766793450729734144 2016-08-20 00:26:19 Twitter for iPhone This is Rufus. He just missed out on the 100m final at Rio. Already training hard for Tokyo. 10/10 never give pup https://t.co/exrRjjJqeO https://twitter.com/dog_rates/status/766793450729734144/photo/1 10 10 Rufus
844 766693177336135680 2016-08-19 17:47:52 Twitter for iPhone This is Brudge. He's a Doberdog. Going to be h*ckin massive one day. 11/10 would pat on head approvingly https://t.co/cTlHjEUNK8 https://twitter.com/dog_rates/status/766693177336135680/photo/1 11 10 Brudge
845 766423258543644672 2016-08-18 23:55:18 Twitter for iPhone This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 https://t.co/Tytt15VquG https://twitter.com/dog_rates/status/766423258543644672/photo/1,https://twitter.com/dog_rates/status/766423258543644672/photo/1 9 10 Shadoe
846 766313316352462849 2016-08-18 16:38:26 Twitter for iPhone This is Oscar. He has legendary eyebrows and he h*ckin knows it. Curly af too. 12/10 would hug passionately https://t.co/xuxZoObmF0 https://twitter.com/dog_rates/status/766313316352462849/photo/1 12 10 Oscar
848 766069199026450432 2016-08-18 00:28:24 Twitter for iPhone This is Juno. She can see your future. 12/10 h*ckin mesmerizing af https://t.co/Z69mShifuk https://twitter.com/dog_rates/status/766069199026450432/photo/1 12 10 Juno
849 766008592277377025 2016-08-17 20:27:34 Twitter for iPhone This is Angel. She stole the @ShopWeRateDogs shirt from her owner. Fits pretty well actually. 11/10 would forgive https://t.co/jaivZ1dcUL https://twitter.com/dog_rates/status/766008592277377025/photo/1 11 10 Angel
850 765719909049503744 2016-08-17 01:20:27 Twitter for iPhone This is Brat. He has a hard time being ferocious so his owner helps out. H*ckin scary af now. 12/10 would still pet https://t.co/soxdNqZDZ2 https://twitter.com/dog_rates/status/765719909049503744/photo/1 12 10 Brat
851 765669560888528897 2016-08-16 22:00:23 Twitter for iPhone This is Tove. She's a Balsamic Poinsetter. Surprisingly deadly. 12/10 snug with caution https://t.co/t6RvnVEdRR https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1 12 10 Tove
852 765395769549590528 2016-08-16 03:52:26 Twitter for iPhone This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB https://twitter.com/dog_rates/status/765395769549590528/photo/1 13 10 NaN
853 765371061932261376 2016-08-16 02:14:15 Twitter for iPhone This is Louie. He's had a long day. Did a lot of pupper things. Also appears to be rather heckin pettable. 11/10 https://t.co/w2qDmoTIZ5 https://twitter.com/dog_rates/status/765371061932261376/photo/1,https://twitter.com/dog_rates/status/765371061932261376/photo/1 11 10 Louie pupper pupper
854 765222098633691136 2016-08-15 16:22:20 Twitter for iPhone This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH https://twitter.com/dog_rates/status/765222098633691136/photo/1 10 10 Gromit
855 764857477905154048 2016-08-14 16:13:27 Twitter for iPhone This is Aubie. He has paws for days. Nibbling tables is one of his priorities. Second only to being cuddly af. 12/10 https://t.co/cBIFBsCRz6 https://twitter.com/dog_rates/status/764857477905154048/photo/1 12 10 Aubie
856 764259802650378240 2016-08-13 00:38:30 Twitter for iPhone This is Kota and her son Benedict. She doesn't know why you're staring. They are a normal family. Both 10/10 https://t.co/Q1v9BZylvZ https://twitter.com/dog_rates/status/764259802650378240/photo/1,https://twitter.com/dog_rates/status/764259802650378240/photo/1 10 10 Kota
858 763837565564780549 2016-08-11 20:40:41 Twitter for iPhone This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo https://twitter.com/dog_rates/status/763837565564780549/photo/1 11 10 Alfie
859 763183847194451968 2016-08-10 01:23:03 Twitter for iPhone This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark https://t.co/EDMcwt86fU https://twitter.com/dog_rates/status/763183847194451968/photo/1 8 10 Clark
861 763103485927849985 2016-08-09 20:03:43 Twitter for iPhone This is Belle. She's a Butterflop Hufflepoof. Rarer than most. Having trouble with car seat. 10/10 perturbed af https://t.co/VIXT3D26VM https://twitter.com/dog_rates/status/763103485927849985/photo/1,https://twitter.com/dog_rates/status/763103485927849985/photo/1 10 10 Belle
862 762699858130116608 2016-08-08 17:19:51 Twitter for iPhone This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3ZgivD https://twitter.com/dog_rates/status/762699858130116608/photo/1 11 10 Leela
863 762471784394268675 2016-08-08 02:13:34 Twitter for iPhone Meet Glenn. Being in public scares him. Frighteningly relatable. 12/10 keep hangin in there Glenn (Imgur - Wuhahha) https://t.co/pA4MDKwRci https://twitter.com/dog_rates/status/762471784394268675/video/1 12 10 Glenn
864 762464539388485633 2016-08-08 01:44:46 Twitter for iPhone This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.co/zGSj1oUgxx https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1 12 10 Buddy
865 762316489655476224 2016-08-07 15:56:28 Twitter for iPhone This is Scout. He specializes in mid-air freeze frames. 11/10 https://t.co/sAHmwRtfSq https://twitter.com/dog_rates/status/762316489655476224/photo/1 11 10 Scout
866 762035686371364864 2016-08-06 21:20:40 Twitter for iPhone This left me speechless. 14/10 heckin heroic af https://t.co/3td8P3o0mB https://twitter.com/dog_rates/status/762035686371364864/video/1 14 10 NaN
867 761976711479193600 2016-08-06 17:26:19 Twitter for iPhone This is Shelby. She finds stuff to put on her head for attention. It works really well. 12/10 talented af https://t.co/WTZ484EntP https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1 12 10 Shelby
869 761745352076779520 2016-08-06 02:06:59 Twitter for iPhone Guys.. we only rate dogs. Pls don't send any more pics of the Loch Ness Monster. Only send in dogs. Thank you. 11/10 https://t.co/obH5vMbm1j https://twitter.com/dog_rates/status/761745352076779520/photo/1 11 10 NaN
870 761672994376806400 2016-08-05 21:19:27 Twitter for iPhone Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.co/EY8kEFuzK7 https://twitter.com/dog_rates/status/761672994376806400/video/1 10 10 NaN
871 761599872357261312 2016-08-05 16:28:54 Twitter for iPhone This is Sephie. According to this picture, she can read. Fantastic at following directions. 11/10 such a good girl https://t.co/7HY9RvCudo https://twitter.com/dog_rates/status/761599872357261312/photo/1 11 10 Sephie
873 761334018830917632 2016-08-04 22:52:29 Twitter for iPhone This is Bruce. I really want to hear the joke he was told. 10/10 for chuckle pup https://t.co/ErPLjjJOKc https://twitter.com/dog_rates/status/761334018830917632/photo/1 10 10 Bruce
874 761292947749015552 2016-08-04 20:09:17 Twitter for iPhone Meet Bonaparte. He's pupset because it's cloudy at the beach. Can't take any pics for his Instagram. 11/10 https://t.co/0THNOfv2Jo https://twitter.com/dog_rates/status/761292947749015552/photo/1 11 10 Bonaparte
875 761227390836215808 2016-08-04 15:48:47 Twitter for iPhone This is Albert. He just found out that bees are dying globally at an alarming rate. 10/10 heckin worried af now https://t.co/nhLX27WsDY https://twitter.com/dog_rates/status/761227390836215808/photo/1 10 10 Albert
876 761004547850530816 2016-08-04 01:03:17 Twitter for iPhone This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK https://twitter.com/dog_rates/status/761004547850530816/photo/1 11 10 Bo
877 760893934457552897 2016-08-03 17:43:45 Twitter for iPhone This is Wishes. He has the day off. Daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/H9YgrUkYwa https://twitter.com/dog_rates/status/760893934457552897/photo/1 11 10 Wishes doggo doggo
878 760656994973933572 2016-08-03 02:02:14 Twitter for iPhone This is Rose. Her face is stuck like that. 11/10 would pet so heckin well https://t.co/tl3gNYdoq2 https://twitter.com/dog_rates/status/760656994973933572/photo/1,https://twitter.com/dog_rates/status/760656994973933572/photo/1 11 10 Rose
879 760641137271070720 2016-08-03 00:59:13 Twitter for iPhone This is Theo. He can walk on water. Still coming to terms with it. 12/10 magical af https://t.co/8Kmuj6SFbC https://twitter.com/dog_rates/status/760641137271070720/photo/1 12 10 Theo
880 760539183865880579 2016-08-02 18:14:06 Twitter for iPhone This is Atlas. Swinging is his passion. 12/10 would push all day https://t.co/9k8LLjJ0uJ https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1 12 10 Atlas
881 760521673607086080 2016-08-02 17:04:31 Vine - Make a Scene Doggo want what doggo cannot have. Temptation strong, dog stronger. 12/10 https://t.co/IqyTF6qik6 https://vine.co/v/5ApKetxzmTB 12 10 NaN doggo doggo
882 760290219849637889 2016-08-02 01:44:48 Twitter Web Client This is Rocco. He's doing his best. 13/10 someone help him (IG: rocco_roni) https://t.co/qFsl1nnXMv https://twitter.com/dog_rates/status/760290219849637889/video/1 13 10 Rocco
883 760252756032651264 2016-08-01 23:15:56 Twitter for iPhone This is Fido. He can tell the weather. Not good at fetch tho. Never comes when called. 4/10 would probably still pet https://t.co/4gOv2Q3iKP https://twitter.com/dog_rates/status/760252756032651264/photo/1 4 10 Fido
884 760190180481531904 2016-08-01 19:07:17 Twitter for iPhone Meet Sadie. She's addicted to balloons. It's tearing her family apart. Won't admit she has a problem. Still 10/10 https://t.co/h6s9Rch0gZ https://twitter.com/dog_rates/status/760190180481531904/photo/1 10 10 Sadie
886 759943073749200896 2016-08-01 02:45:22 Vine - Make a Scene Here's a wicked fast pupper. 12/10 camera could barely keep pup https://t.co/HtAR6gpUAu https://vine.co/v/5AJm5pq7Kav 12 10 NaN pupper pupper
887 759923798737051648 2016-08-01 01:28:46 Twitter for iPhone We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https://t.co/49hkNAsubi https://twitter.com/dog_rates/status/759923798737051648/photo/1 10 10 NaN
888 759846353224826880 2016-07-31 20:21:02 Twitter for iPhone This is Kirby. He's a Beneblip Cumberpat. Pretty heckin rare. 11/10 would put my face against his face https://t.co/fd6uucghY6 https://twitter.com/dog_rates/status/759846353224826880/photo/1 11 10 Kirby
889 759793422261743616 2016-07-31 16:50:42 Twitter for iPhone Meet Maggie &amp; Lila. Maggie is the doggo, Lila is the pupper. They are sisters. Both 12/10 would pet at the same time https://t.co/MYwR4DQKll https://twitter.com/dog_rates/status/759793422261743616/photo/1,https://twitter.com/dog_rates/status/759793422261743616/photo/1 12 10 Maggie doggo pupper doggopupper
891 759557299618865152 2016-07-31 01:12:26 Twitter for iPhone This is Emma. She can't believe her last guess didn't hit. Convinced ur stacking them on top of each other. 10/10 https://t.co/JRV1dhBYwu https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1 10 10 Emma
892 759447681597108224 2016-07-30 17:56:51 Twitter for iPhone This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.co/vT3JM8b989 https://twitter.com/dog_rates/status/759447681597108224/photo/1 11 10 Oakley
893 759446261539934208 2016-07-30 17:51:13 Twitter for iPhone No no no this is all wrong. The Walmart had to have run into the dog driving the car. 10/10 someone tell him it's ok\nhttps://t.co/fRaTGcj68A https://twitter.com/wsaznews/status/759167558763196416 10 10 NaN
894 759197388317847553 2016-07-30 01:22:17 Twitter for iPhone This is Luna. She's just heckin precious af I have nothing else to say. 12/10 https://t.co/gQH2mmKIJW https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1 12 10 Luna
896 759099523532779520 2016-07-29 18:53:24 Twitter for iPhone Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby https://t.co/Cim4DSj6Oi https://twitter.com/dog_rates/status/759099523532779520/photo/1 7 10 Toby
897 759047813560868866 2016-07-29 15:27:55 Twitter for iPhone This is Spencer. He's part of the Queen's Guard. Takes his job very seriously. 11/10 https://t.co/8W5iSOgXfx https://twitter.com/dog_rates/status/759047813560868866/photo/1,https://twitter.com/dog_rates/status/759047813560868866/photo/1 11 10 Spencer
898 758854675097526272 2016-07-29 02:40:28 Twitter for iPhone This is Lilli Bee &amp; Honey Bear. Unfortunately, they were both born with no eyes. So heckin sad. Both 11/10 https://t.co/4UrfOZhztW https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1 11 10 Lilli
899 758828659922702336 2016-07-29 00:57:05 Twitter for iPhone This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af https://t.co/9T2h14yn4Q https://twitter.com/dog_rates/status/758828659922702336/photo/1 13 10 NaN doggo doggo
900 758740312047005698 2016-07-28 19:06:01 Twitter for iPhone Meet Boston. He's worried because his tongue won't fit all the way in his mouth. 12/10 it'll be ok deep breaths pup https://t.co/rfWQ4T9iQj https://twitter.com/dog_rates/status/758740312047005698/photo/1 12 10 Boston
901 758474966123810816 2016-07-28 01:31:38 Twitter for iPhone This is Brandonald. He accidentally opened the front facing camera. Playing it off rather heckin well. 11/10 https://t.co/uPUAotqQtM https://twitter.com/dog_rates/status/758474966123810816/photo/1 11 10 Brandonald
902 758467244762497024 2016-07-28 01:00:57 Twitter for iPhone Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE https://twitter.com/dog_rates/status/758467244762497024/video/1 165 150 NaN
903 758405701903519748 2016-07-27 20:56:24 Twitter for iPhone This is Odie. He falls asleep wherever he wants. Must be nice. 10/10 https://t.co/M9BXCSDVjh https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1 10 10 Odie
904 758355060040593408 2016-07-27 17:35:10 Twitter for iPhone This is Corey. He's a Portobello Corgicool. Trying to convince you that he's not a hipster. 11/10 yea right Corey https://t.co/NzWUrFZydr https://twitter.com/dog_rates/status/758355060040593408/photo/1 11 10 Corey
905 758099635764359168 2016-07-27 00:40:12 Vine - Make a Scene In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE https://vine.co/v/hQJbaj1VpIz 13 10 NaN
906 758041019896193024 2016-07-26 20:47:17 Twitter for iPhone Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 https://t.co/l46jwv5WYv https://twitter.com/dog_rates/status/758041019896193024/photo/1 9 10 NaN
907 757741869644341248 2016-07-26 00:58:34 Twitter for iPhone This is Leonard. He hides in bushes to escape his problems. 10/10 relatable af https://t.co/TdyGTcX0uo https://twitter.com/dog_rates/status/757741869644341248/photo/1,https://twitter.com/dog_rates/status/757741869644341248/photo/1 10 10 Leonard
909 757725642876129280 2016-07-25 23:54:05 Twitter for iPhone This is Beckham. He fell asleep at the wheel. Very churlish. Looks to have a backpup driver tho. That's good. 11/10 https://t.co/rptsOm73Wr https://twitter.com/dog_rates/status/757725642876129280/photo/1,https://twitter.com/dog_rates/status/757725642876129280/photo/1 11 10 Beckham
910 757611664640446465 2016-07-25 16:21:11 Twitter for iPhone This is Cooper. He tries to come across as feisty but it never works for very long. 12/10 https://t.co/AVks8DjHwB https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1 12 10 Cooper
912 757596066325864448 2016-07-25 15:19:12 Twitter for iPhone Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug https://t.co/mOmnL19Wsl https://twitter.com/dog_rates/status/757596066325864448/photo/1 4 10 NaN
913 757400162377592832 2016-07-25 02:20:45 Twitter for iPhone She walks herself up and down the train to be petted by all the passengers. 13/10 I can't handle this https://t.co/gwKCspY8N2 https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1 13 10 NaN
914 757393109802180609 2016-07-25 01:52:43 Twitter for iPhone Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him https://t.co/OfvRoD6ndV https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1 10 10 NaN doggo doggo
915 757354760399941633 2016-07-24 23:20:20 Twitter for iPhone This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 https://t.co/7waRPODGyO https://twitter.com/dog_rates/status/757354760399941633/photo/1,https://twitter.com/dog_rates/status/757354760399941633/photo/1 8 10 Devón
916 756998049151549440 2016-07-23 23:42:53 Twitter for iPhone This is Oliver. He's an English Creamschnitzel. The rarest of schnitzels. 11/10 would pet quite firmly https://t.co/qbO5X6dYuj https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1 11 10 Oliver
917 756939218950160384 2016-07-23 19:49:07 Twitter for iPhone This is Jax. He is a majestic mountain pupper. Thinks flat ground is for the weak. 12/10 would totally hike with https://t.co/KGdeHuFJnH https://twitter.com/dog_rates/status/756939218950160384/photo/1 12 10 Jax pupper pupper
918 756651752796094464 2016-07-23 00:46:50 Twitter for iPhone This is Gert. He just wants you to be happy. 11/10 would pat on the head so damn well https://t.co/l0Iwj6rLFW https://twitter.com/dog_rates/status/756651752796094464/photo/1 11 10 Gert
919 756526248105566208 2016-07-22 16:28:07 Twitter for iPhone All hail sky doggo. 13/10 would jump super high to pet https://t.co/CsLRpqdeTF https://twitter.com/dog_rates/status/756526248105566208/photo/1 13 10 NaN doggo doggo
920 756303284449767430 2016-07-22 01:42:09 Twitter for iPhone Pwease accept dis rose on behalf of dog. 11/10 https://t.co/az5BVcIV5I https://twitter.com/dog_rates/status/756303284449767430/photo/1 11 10 NaN
921 756288534030475264 2016-07-22 00:43:32 Twitter for iPhone Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://t.co/hfddJ0OiNR https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1 12 10 NaN
922 756275833623502848 2016-07-21 23:53:04 Twitter for iPhone When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 https://t.co/JrDAzMhwG9 https://twitter.com/dog_rates/status/756275833623502848/photo/1,https://twitter.com/dog_rates/status/756275833623502848/photo/1 10 10 NaN puppo puppo
923 755955933503782912 2016-07-21 02:41:54 Twitter for iPhone Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 https://t.co/GAYViEweWr https://twitter.com/dog_rates/status/755955933503782912/video/1 12 10 NaN pupper pupper
924 755206590534418437 2016-07-19 01:04:16 Twitter for iPhone This is one of the most inspirational stories I've ever come across. I have no words. 14/10 for both doggo and owner https://t.co/I5ld3eKD5k https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1 14 10 one doggo doggo
925 755110668769038337 2016-07-18 18:43:07 Twitter for iPhone This is Watson. He trust falls on command. 13/10 it's elementary... (IG: wat.ki) https://t.co/goX3jewkYN https://twitter.com/dog_rates/status/755110668769038337/video/1 13 10 Watson
927 754856583969079297 2016-07-18 01:53:28 Twitter for iPhone This is Winnie. She's not a fan of the fast moving air. 11/10 objects in mirror may be more fluffy than they appear https://t.co/FyHrk20gUR https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1 11 10 Winnie
928 754747087846248448 2016-07-17 18:38:22 Twitter for iPhone This is Keith. He's pursuing a more 2D lifestyle. Idiosyncratic af. 12/10 follow your dreams Keith https://t.co/G9ufksBMlU https://twitter.com/dog_rates/status/754747087846248448/photo/1 12 10 Keith
929 754482103782404096 2016-07-17 01:05:25 Twitter for iPhone This is Milo. He's currently plotting his revenge. 10/10 https://t.co/ca0q9HM8II https://twitter.com/dog_rates/status/754482103782404096/video/1 10 10 Milo
930 754449512966619136 2016-07-16 22:55:55 Twitter for iPhone This is Dex. He can see into your past and future. Mesmerizing af 11/10 https://t.co/0dYI0Cpdge https://twitter.com/dog_rates/status/754449512966619136/photo/1 11 10 Dex
931 754120377874386944 2016-07-16 01:08:03 Twitter for iPhone When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 https://t.co/lFEoGqZ4oA https://twitter.com/dog_rates/status/754120377874386944/photo/1 10 10 NaN
932 754011816964026368 2016-07-15 17:56:40 Twitter for iPhone This is Charlie. He pouts until he gets to go on the swing. 12/10 manipulative af https://t.co/ilwQqWFKCh https://twitter.com/dog_rates/status/754011816964026368/photo/1,https://twitter.com/dog_rates/status/754011816964026368/photo/1 12 10 Charlie
933 753655901052166144 2016-07-14 18:22:23 Twitter for iPhone "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 https://t.co/ULqThwWmLg https://twitter.com/dog_rates/status/753655901052166144/photo/1 10 10 NaN
934 753420520834629632 2016-07-14 02:47:04 Twitter for iPhone Here we are witnessing an isolated squad of bouncing doggos. Unbelievably rare for this time of year. 11/10 for all https://t.co/CCdlwiTwQf https://twitter.com/dog_rates/status/753420520834629632/video/1 11 10 NaN
935 753398408988139520 2016-07-14 01:19:12 Twitter for iPhone This is Scout. Her batteries are low. 12/10 precious af https://t.co/ov05LIoQJX https://twitter.com/dog_rates/status/753398408988139520/video/1 12 10 Scout
936 753375668877008896 2016-07-13 23:48:51 Twitter for iPhone This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc https://twitter.com/dog_rates/status/753375668877008896/photo/1 8 10 Hank
938 753294487569522689 2016-07-13 18:26:16 Twitter for iPhone This is Ace. He's a window washer. One of the best around. 11/10 helpful af https://t.co/sTuRoYfzPv https://twitter.com/dog_rates/status/753294487569522689/photo/1 11 10 Ace
939 753039830821511168 2016-07-13 01:34:21 Vine - Make a Scene So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 https://vine.co/v/5W2Dg3XPX7a 13 10 NaN
940 753026973505581056 2016-07-13 00:43:15 Twitter for iPhone Say hello to Tayzie. She's a Barbadian Bugaboop. Seems quite social. A rare quality for a Bugaboop. 10/10 petable af https://t.co/6qF5YZx6OV https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1 10 10 Tayzie
941 752932432744185856 2016-07-12 18:27:35 Vine - Make a Scene This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc https://vine.co/v/OEppMFbejFz 12 10 Carl
942 752917284578922496 2016-07-12 17:27:23 Twitter for iPhone This is Grizzie. She's a semi-submerged Bahraini Buttersplotch. Appears alert af. Snazzy tongue. 11/10 would def pet https://t.co/WZ4zzkXXnW https://twitter.com/dog_rates/status/752917284578922496/photo/1 11 10 Grizzie
944 752682090207055872 2016-07-12 01:52:49 Twitter for iPhone Nothing better than a doggo and a sunset. 10/10 majestic af https://t.co/xVSodF19PS https://twitter.com/dog_rates/status/752682090207055872/photo/1,https://twitter.com/dog_rates/status/752682090207055872/photo/1 10 10 NaN doggo doggo
945 752660715232722944 2016-07-12 00:27:52 Twitter for iPhone Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 https://t.co/bWSgqnwSHr https://twitter.com/dog_rates/status/752660715232722944/photo/1,https://twitter.com/dog_rates/status/752660715232722944/photo/1 10 10 NaN doggo doggo
946 752568224206688256 2016-07-11 18:20:21 Vine - Make a Scene Here are three doggos completely misjudging an airborne stick. Decent efforts tho. All 9/10 https://t.co/HCXQL4fGVZ https://vine.co/v/5W0bdhEUUVT 9 10 NaN
947 752519690950500352 2016-07-11 15:07:30 Twitter for iPhone Hopefully this puppo on a swing will help get you through your Monday. 11/10 would push https://t.co/G54yClasz2 https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1 11 10 NaN puppo puppo
948 752334515931054080 2016-07-11 02:51:40 Twitter for iPhone Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) https://t.co/jwd0j6oWLE https://twitter.com/dog_rates/status/752334515931054080/video/1 8 10 NaN doggo doggo
950 752173152931807232 2016-07-10 16:10:29 Twitter for iPhone This is Brody. He's a lifeguard. Always prepared for rescue. 12/10 would fake drown just to get saved by him https://t.co/olDmwNjOy1 https://twitter.com/dog_rates/status/752173152931807232/photo/1,https://twitter.com/dog_rates/status/752173152931807232/photo/1 12 10 Brody
951 751950017322246144 2016-07-10 01:23:49 Vine - Make a Scene This is Lola. She's a surfing pupper. 13/10 magical af https://t.co/BlGQkhM5EV https://vine.co/v/5WrjaYAMvMO 13 10 Lola pupper pupper
952 751937170840121344 2016-07-10 00:32:46 Twitter for iPhone This is Ruby. Her ice cube is melting. She doesn't know what to do about it. 11/10 https://t.co/Vfc3eAFl2q https://twitter.com/dog_rates/status/751937170840121344/photo/1 11 10 Ruby
953 751830394383790080 2016-07-09 17:28:29 Twitter for iPhone This is Tucker. He's very camera shy. 12/10 would give stellar belly rubs to https://t.co/BJRsxuLF1w https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1 12 10 Tucker
954 751793661361422336 2016-07-09 15:02:31 Vine - Make a Scene This is Fred. He's having one heck of a summer. 11/10 https://t.co/I7SFchkNk4 https://vine.co/v/5W5YHdTJvaV 11 10 Fred
955 751598357617971201 2016-07-09 02:06:27 Twitter for iPhone This is Toby. A cat got his tongue. 13/10 adorable af https://t.co/fHQrBKYSLC https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1 13 10 Toby
956 751583847268179968 2016-07-09 01:08:47 Twitter for iPhone Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 https://twitter.com/dog_rates/status/751583847268179968/photo/1 5 10 NaN doggo pupper doggopupper
957 751538714308972544 2016-07-08 22:09:27 Twitter for iPhone This is Max. She has one ear that's always slightly more alert than the other. 10/10 wonky af https://t.co/5eJg69G8vY https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1 10 10 Max
958 751456908746354688 2016-07-08 16:44:23 Twitter for iPhone Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) https://t.co/lsVAMBq6ex https://twitter.com/dog_rates/status/751456908746354688/video/1 12 10 NaN pupper pupper
959 751251247299190784 2016-07-08 03:07:09 Twitter for iPhone This is Gilbert. He's being chased by a battalion of miniature floof cows. 10/10 we all believe in you Gilbert https://t.co/wayKZkDRTG https://twitter.com/dog_rates/status/751251247299190784/video/1 10 10 Gilbert
960 751205363882532864 2016-07-08 00:04:50 Twitter for iPhone "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 https://t.co/510gJW9fsy https://twitter.com/dog_rates/status/751205363882532864/photo/1,https://twitter.com/dog_rates/status/751205363882532864/photo/1 12 10 NaN
961 751132876104687617 2016-07-07 19:16:47 Twitter for iPhone This is Cooper. He's just so damn happy. 10/10 what's your secret puppo? https://t.co/yToDwVXEpA https://twitter.com/dog_rates/status/751132876104687617/photo/1,https://twitter.com/dog_rates/status/751132876104687617/photo/1 10 10 Cooper puppo puppo
962 750868782890057730 2016-07-07 01:47:22 Twitter for iPhone Meet Milo. He hauled ass until he ran out of treadmill and then passed out from exhaustion. 11/10 sleep tight pupper https://t.co/xe1aGZNkcC https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1 11 10 Milo pupper pupper
963 750719632563142656 2016-07-06 15:54:42 Twitter for iPhone This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t.co/WS6BoApYyL https://twitter.com/dog_rates/status/750719632563142656/photo/1 12 10 Meyer
964 750506206503038976 2016-07-06 01:46:38 Twitter for iPhone This is Malcolm. He's absolutely terrified of heights. 8/10 hang in there pupper https://t.co/SVU00Sc9U2 https://twitter.com/dog_rates/status/750506206503038976/photo/1 8 10 Malcolm pupper pupper
965 750429297815552001 2016-07-05 20:41:01 Twitter for iPhone This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1 12 10 Arnie
966 750383411068534784 2016-07-05 17:38:41 Twitter for iPhone This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper https://t.co/FfH3o88Vta https://twitter.com/dog_rates/status/750383411068534784/photo/1 9 10 Zoe pupper pupper
968 750147208377409536 2016-07-05 02:00:06 Twitter for iPhone And finally, happy 4th of July from the squad 🇺🇸 13/10 for all https://t.co/Mr8Lr3iOUe https://twitter.com/dog_rates/status/750147208377409536/photo/1 13 10 NaN
969 750132105863102464 2016-07-05 01:00:05 Twitter for iPhone This is Stewie. He will roundhouse kick anyone who questions his independence. 11/10 free af https://t.co/dDx2gKefYo https://twitter.com/dog_rates/status/750132105863102464/photo/1 11 10 Stewie
970 750117059602808832 2016-07-05 00:00:18 Twitter for iPhone This is Calvin. He just loves America so much. 10/10 would roll around in flag with https://t.co/RXdzWaCQHm https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1 10 10 Calvin
971 750101899009982464 2016-07-04 23:00:03 Twitter for iPhone Meet Lilah. She agreed on one quick pic. Now she'd like to go mentally prepare for the onslaught of fireworks. 11/10 https://t.co/enCpXzZHkD https://twitter.com/dog_rates/status/750101899009982464/photo/1,https://twitter.com/dog_rates/status/750101899009982464/photo/1 11 10 Lilah
972 750086836815486976 2016-07-04 22:00:12 TweetDeck This is Spanky. He was a member of the 2002 USA Winter Olympic speed skating team. Accomplished af. 12/10 https://t.co/7tlZPrePXd https://twitter.com/dog_rates/status/750086836815486976/photo/1 12 10 Spanky
973 750071704093859840 2016-07-04 21:00:04 Twitter for iPhone Pause your cookout and admire this pupper's nifty hat. 10/10 https://t.co/RG4C9IdNJM https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1 10 10 NaN pupper pupper
974 750056684286914561 2016-07-04 20:00:23 TweetDeck This is Jameson. He had a few too many in the name of freedom. I can't not respect that. 11/10 'Merica https://t.co/8zQvXM6pG5 https://twitter.com/dog_rates/status/750056684286914561/photo/1 11 10 Jameson
975 750041628174217216 2016-07-04 19:00:33 TweetDeck This is Beau. He's trying to keep his daddy from packing to leave for Annual Training. 13/10 and now I'm crying https://t.co/7JeDfQvzzI https://twitter.com/dog_rates/status/750041628174217216/photo/1 13 10 Beau
976 750026558547456000 2016-07-04 18:00:41 TweetDeck Meet Jax &amp; Jil. Jil is yelling the pledge of allegiance. If u cant take the freedom get out the kitchen Jax. 10/10s https://t.co/jrg29NDNhI https://twitter.com/dog_rates/status/750026558547456000/photo/1 10 10 Jax
977 750011400160841729 2016-07-04 17:00:26 TweetDeck Meet Piper. She's an airport doggo. Please return your tray table to its full pupright and locked position. 11/10 https://t.co/D17IAcetmM https://twitter.com/dog_rates/status/750011400160841729/photo/1 11 10 Piper doggo doggo
978 749996283729883136 2016-07-04 16:00:22 TweetDeck This is Bo. He emanates happiness. 12/10 I could cut the freedom with a knife https://t.co/c7LNFt39eR https://twitter.com/dog_rates/status/749996283729883136/photo/1 12 10 Bo
979 749981277374128128 2016-07-04 15:00:45 TweetDeck This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh https://twitter.com/dog_rates/status/749981277374128128/photo/1 1776 10 Atticus
980 749774190421639168 2016-07-04 01:17:51 Twitter for iPhone This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl https://twitter.com/dog_rates/status/749774190421639168/photo/1 12 10 Lucy
981 749417653287129088 2016-07-03 01:41:06 Twitter for iPhone This is Finn. He's the most unphotogenic pupper of all time. 11/10 https://t.co/qvA2rCUl6v https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1 11 10 Finn pupper pupper
982 749403093750648834 2016-07-03 00:43:15 Twitter for iPhone Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx https://twitter.com/dog_rates/status/749403093750648834/photo/1 10 10 NaN
983 749395845976588288 2016-07-03 00:14:27 Twitter for iPhone This is George. He just remembered that bees are dying globally at an alarming rate. Scary stuff George. 10/10 https://t.co/lznl6QGkYc https://twitter.com/dog_rates/status/749395845976588288/photo/1,https://twitter.com/dog_rates/status/749395845976588288/photo/1 10 10 George
984 749317047558017024 2016-07-02 19:01:20 Twitter for iPhone This is Blu. He's a wild bush Floofer. I wish anything made me as happy as bushes make Blu. 12/10 would frolic with https://t.co/HHUAnBb6QB https://twitter.com/dog_rates/status/749317047558017024/video/1 12 10 Blu floofer floofer
985 749075273010798592 2016-07-02 03:00:36 Vine - Make a Scene This is Boomer. He's self-baptizing. Other doggo not ready to renounce sins. 11/10 spiritually awakened af https://t.co/cRTJiQQk9o https://vine.co/v/5ztZvHgI17r 11 10 Boomer doggo doggo
986 749064354620928000 2016-07-02 02:17:13 Twitter for iPhone Meet Winston. He's pupset because I forgot to mention that it's Canada Day today. 11/10 please forgive me Winston https://t.co/xEY8dbJxnF https://twitter.com/dog_rates/status/749064354620928000/photo/1,https://twitter.com/dog_rates/status/749064354620928000/photo/1 11 10 Winston
987 749036806121881602 2016-07-02 00:27:45 Twitter for iPhone This is Dietrich. He hops at random. Other doggos don't understand him. It upsets him greatly. 8/10 would comfort https://t.co/U8cSRz8wzC https://twitter.com/dog_rates/status/749036806121881602/photo/1 8 10 Dietrich
988 748977405889503236 2016-07-01 20:31:43 Twitter for iPhone What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX https://twitter.com/dog_rates/status/748977405889503236/photo/1 10 10 not
989 748932637671223296 2016-07-01 17:33:49 Twitter for iPhone Say hello to Divine Doggo. Must be magical af. 13/10 would be an honor to pet https://t.co/BbcABzohKb https://twitter.com/dog_rates/status/748932637671223296/photo/1 13 10 Divine doggo doggo
990 748705597323898880 2016-07-01 02:31:39 Twitter Web Client #BarkWeek is getting rather heckin terrifying over here. Doin me quite the spooken. 13/10 (vid by @corgi_zero) https://t.co/eA7k1ZQslA https://twitter.com/dog_rates/status/748705597323898880/video/1 13 10 NaN
991 748699167502000129 2016-07-01 02:06:06 Twitter for iPhone Meet Tripp. He's being eaten by a sherk and doesn't even care. Unfazed af. 11/10 keep doin you Tripp https://t.co/gGxjthmG1c https://twitter.com/dog_rates/status/748699167502000129/photo/1,https://twitter.com/dog_rates/status/748699167502000129/photo/1 11 10 Tripp
992 748692773788876800 2016-07-01 01:40:41 Twitter for iPhone That is Quizno. This is his beach. He does not tolerate human shenanigans on his beach. 10/10 reclaim ur land doggo https://t.co/vdr7DaRSa7 https://twitter.com/dog_rates/status/748692773788876800/photo/1 10 10 his doggo doggo
993 748575535303884801 2016-06-30 17:54:50 Twitter for iPhone This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 https://t.co/z5bAdtn9kd https://twitter.com/dog_rates/status/748575535303884801/photo/1 6 10 one
994 748568946752774144 2016-06-30 17:28:39 Twitter for iPhone This is Cora. She rings a bell for treats. 12/10 precious af (vid by @skyehellenkamp) https://t.co/uUncaAGH18 https://twitter.com/dog_rates/status/748568946752774144/video/1 12 10 Cora
995 748346686624440324 2016-06-30 02:45:28 Twitter for iPhone "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 https://t.co/XFBrrqapZa https://twitter.com/dog_rates/status/748346686624440324/photo/1 10 10 NaN
996 748337862848962560 2016-06-30 02:10:24 Vine - Make a Scene SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek https://t.co/QGGhZoTcwy https://vine.co/v/h5aDaFthX6O 13 10 NaN pupper pupper
997 748324050481647620 2016-06-30 01:15:31 Twitter for iPhone This is Duke. He permanently looks like he just tripped over something. 11/10 https://t.co/1sNtG7GgiO https://twitter.com/dog_rates/status/748324050481647620/photo/1,https://twitter.com/dog_rates/status/748324050481647620/photo/1 11 10 Duke
998 748307329658011649 2016-06-30 00:09:04 Twitter for iPhone This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 https://t.co/KubWEqOIgO https://twitter.com/dog_rates/status/748307329658011649/photo/1,https://twitter.com/dog_rates/status/748307329658011649/photo/1 7 10 NaN
999 748220828303695873 2016-06-29 18:25:21 Vine - Make a Scene Stop what you're doing and watch this heckin masterpiece right here. Both 13/10 https://t.co/3BOVI2WZoH https://vine.co/v/iiLjKuYJpr6 13 10 NaN
1000 747963614829678593 2016-06-29 01:23:16 Twitter for iPhone PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q https://twitter.com/dog_rates/status/747963614829678593/photo/1 10 10 NaN pupper pupper
1001 747933425676525569 2016-06-28 23:23:19 Twitter for iPhone Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 https://t.co/oQqlOsla4R https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1 11 10 NaN
1002 747885874273214464 2016-06-28 20:14:22 Twitter for iPhone This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW https://twitter.com/dog_rates/status/747885874273214464/photo/1,https://twitter.com/dog_rates/status/747885874273214464/photo/1 8 10 NaN
1003 747844099428986880 2016-06-28 17:28:22 Twitter for iPhone This is Huxley. He's pumped for #BarkWeek. Even has a hat. Ears are quite magical. 11/10 would remove hat to pat https://t.co/V7h5NMYbYz https://twitter.com/dog_rates/status/747844099428986880/photo/1 11 10 Huxley
1004 747816857231626240 2016-06-28 15:40:07 Twitter for iPhone Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R https://twitter.com/dog_rates/status/747816857231626240/photo/1 4 10 NaN
1006 747648653817413632 2016-06-28 04:31:44 Vine - Make a Scene This is Keurig. He apparently headbutts other dogs to greet them. Not cool Keurig. So fluffy tho 12/10 https://t.co/zexdr61Q5M https://vine.co/v/iqIZFtOxEMB 12 10 Keurig
1007 747600769478692864 2016-06-28 01:21:27 Twitter for iPhone This is Bookstore and Seaweed. Bookstore is tired and Seaweed is an asshole. 10/10 and 7/10 respectively https://t.co/eUGjGjjFVJ https://twitter.com/dog_rates/status/747600769478692864/photo/1,https://twitter.com/dog_rates/status/747600769478692864/photo/1 10 10 Bookstore
1008 747594051852075008 2016-06-28 00:54:46 Twitter for iPhone Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 https://t.co/Ie2mWXWjpr https://twitter.com/dog_rates/status/747594051852075008/photo/1 11 10 NaN
1009 747512671126323200 2016-06-27 19:31:23 Twitter for iPhone Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 https://t.co/12lICZN2SP https://twitter.com/dog_rates/status/747512671126323200/photo/1 10 10 NaN
1010 747461612269887489 2016-06-27 16:08:30 Twitter for iPhone Never seen a shark hold another shark like this before. Must be evolving. Both 10/10 please only send dogs though https://t.co/x4IUNKV79Y https://twitter.com/dog_rates/status/747461612269887489/photo/1 10 10 NaN
1011 747439450712596480 2016-06-27 14:40:26 Vine - Make a Scene This is Linus. He just wanted to say hello but no one's paying attention. 12/10 (vid by @rebeccacollinzz) https://t.co/VCijm2eVpR https://vine.co/v/5uTVXWvn3Ip 12 10 Linus
1013 747219827526344708 2016-06-27 00:07:44 Twitter for iPhone This is Atticus. He's remaining calm but his costume looks terrified. 11/10 https://t.co/uT7QeZI34U https://twitter.com/dog_rates/status/747219827526344708/photo/1,https://twitter.com/dog_rates/status/747219827526344708/photo/1 11 10 Atticus
1014 747204161125646336 2016-06-26 23:05:29 Twitter for iPhone This is Clark. He's deadly af. Clearly part shark (see pic 2). 10/10 would totally still try to pet https://t.co/dmdEBOEctC https://twitter.com/dog_rates/status/747204161125646336/photo/1,https://twitter.com/dog_rates/status/747204161125646336/photo/1 10 10 Clark
1015 747103485104099331 2016-06-26 16:25:26 Twitter for iPhone Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 https://t.co/DX1JUHJVN7 https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1 11 10 NaN
1017 746872823977771008 2016-06-26 01:08:52 Twitter for iPhone This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 https://twitter.com/dog_rates/status/746872823977771008/photo/1,https://twitter.com/dog_rates/status/746872823977771008/photo/1 11 10 NaN
1019 746790600704425984 2016-06-25 19:42:08 Twitter for iPhone When you just can't resist... 10/10 topnotch tongue https://t.co/jeWEGUgbXf https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1 10 10 NaN
1020 746757706116112384 2016-06-25 17:31:25 Vine - Make a Scene This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u https://vine.co/v/5BYq6hmrEI3 11 10 Maddie
1021 746726898085036033 2016-06-25 15:29:00 Twitter for iPhone Meet Abby. She's incredibly distracting. Just wants to help steer. Hazardous af. Still 12/10 would pet while driving https://t.co/gLbLiZtwsp https://twitter.com/dog_rates/status/746726898085036033/photo/1 12 10 Abby
1022 746542875601690625 2016-06-25 03:17:46 Vine - Make a Scene Here's a golden floofer helping with the groceries. Bed got in way. Still 11/10 helpful af (vid by @categoen) https://t.co/6ZRoZUWFmd https://vine.co/v/5uZYwqmuDeT 11 10 NaN floofer floofer
1024 746507379341139972 2016-06-25 00:56:43 Twitter for iPhone This is Shiloh. She did not pass the soft mouth egg test. 10/10 would absolutely still pet https://t.co/PlR6hjqvr5 https://twitter.com/dog_rates/status/746507379341139972/photo/1,https://twitter.com/dog_rates/status/746507379341139972/photo/1 10 10 Shiloh
1025 746369468511756288 2016-06-24 15:48:42 Twitter for iPhone This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt https://twitter.com/dog_rates/status/746369468511756288/photo/1 9 10 NaN
1026 746131877086527488 2016-06-24 00:04:36 Twitter for iPhone This is Gustav. He has claimed that plant. It is his now. 10/10 would not try to take his plant away https://t.co/uRI7HBgGJX https://twitter.com/dog_rates/status/746131877086527488/photo/1 10 10 Gustav
1027 746056683365994496 2016-06-23 19:05:49 Twitter for iPhone This is Arlen and Thumpelina. They are best pals. Cuddly af. 11/10 for both puppers https://t.co/VJgbgIzIHx https://twitter.com/dog_rates/status/746056683365994496/photo/1,https://twitter.com/dog_rates/status/746056683365994496/photo/1 11 10 Arlen
1028 745789745784041472 2016-06-23 01:25:06 Twitter for iPhone This is Gus. He didn't win the Powerball. Quite perturbed about it. Still 10/10 would comfort in time of need https://t.co/3wc246LOtu https://twitter.com/dog_rates/status/745789745784041472/photo/1 10 10 Gus
1029 745712589599014916 2016-06-22 20:18:30 Twitter for iPhone This is Percy. He fell asleep at the wheel. Irresponsible af. 7/10 absolute menace on the roadway https://t.co/QHbvtvaw8E https://twitter.com/dog_rates/status/745712589599014916/photo/1 7 10 Percy
1030 745433870967832576 2016-06-22 01:50:58 Twitter for iPhone This is Lenox. She's in a wheelbarrow. Silly doggo. You don't belong there. 10/10 would push around https://t.co/oYbVR4nBsR https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1 10 10 Lenox doggo doggo
1031 745422732645535745 2016-06-22 01:06:43 Twitter for iPhone We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ https://twitter.com/dog_rates/status/745422732645535745/photo/1 9 10 very
1032 745314880350101504 2016-06-21 17:58:09 Twitter for iPhone This is Sugar. She excels underwater. 12/10 photogenic af https://t.co/AWMeXJJz64 https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1 12 10 Sugar
1033 745074613265149952 2016-06-21 02:03:25 Vine - Make a Scene This is Jeffrey. He wasn't prepared to execute such advanced barkour. Still 11/10 would totally pet https://t.co/MuuwkkLrHh https://vine.co/v/iQm3JAXuFmv 11 10 Jeffrey
1034 745057283344719872 2016-06-21 00:54:33 Twitter for iPhone This is Oliver. He's downright gorgeous as hell. Should be on the cover of Dogue. 12/10 would introduce to mom https://t.co/BkgU3rrsXA https://twitter.com/dog_rates/status/745057283344719872/photo/1,https://twitter.com/dog_rates/status/745057283344719872/photo/1 12 10 Oliver
1035 744995568523612160 2016-06-20 20:49:19 Twitter for iPhone This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo https://t.co/2FPb45NXrK https://twitter.com/dog_rates/status/744995568523612160/photo/1,https://twitter.com/dog_rates/status/744995568523612160/photo/1 9 10 Abby puppo puppo
1036 744971049620602880 2016-06-20 19:11:53 Twitter for iPhone Say hello to Indie and Jupiter. They're having a stellar day out on the boat. Both 12/10 adorbz af https://t.co/KgSEkrPA3r https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1 12 10 Indie
1037 744709971296780288 2016-06-20 01:54:27 Twitter for iPhone This is Harvey. He's stealthy af. 10/10 would do my best to pet https://t.co/zAzaRT6NnT https://twitter.com/dog_rates/status/744709971296780288/photo/1 10 10 Harvey
1038 744334592493166593 2016-06-19 01:02:50 Twitter for iPhone This is Blanket. She has overthrown her human. Demands walks like this every hour on the hour. 11/10 so damn fluffy https://t.co/hrJugNHs2Z https://twitter.com/dog_rates/status/744334592493166593/photo/1 11 10 Blanket
1039 744234799360020481 2016-06-18 18:26:18 Twitter for iPhone Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) https://t.co/7wE9LTEXC4 https://twitter.com/dog_rates/status/744234799360020481/video/1 13 10 NaN doggo doggo
1040 744223424764059648 2016-06-18 17:41:06 Twitter for iPhone This is actually a pupper and I'd pet it so well. 12/10\nhttps://t.co/RNqS7C4Y4N https://twitter.com/strange_animals/status/672108316018024452 12 10 actually pupper pupper
1041 743980027717509120 2016-06-18 01:33:55 Twitter for iPhone This is Geno. He's a Wrinkled Baklavian Velveeta. Looks sad but that's just the extra skin. 11/10 would smoosh face https://t.co/Kxda28JmQ2 https://twitter.com/dog_rates/status/743980027717509120/photo/1 11 10 Geno
1042 743895849529389061 2016-06-17 19:59:26 Twitter for iPhone When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 https://t.co/gCCrY8P0K9 https://twitter.com/dog_rates/status/743895849529389061/photo/1 10 10 NaN
1044 743609206067040256 2016-06-17 01:00:24 Twitter for iPhone Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1 10 10 Stark
1045 743595368194129920 2016-06-17 00:05:25 Twitter for iPhone This is Harold. He looks slippery af. Probably difficult to hug. Would still try tho. 7/10 great with kids I bet https://t.co/EVuqdEO66N https://twitter.com/dog_rates/status/743595368194129920/photo/1 7 10 Harold
1046 743545585370791937 2016-06-16 20:47:36 Twitter for iPhone Say hello to Bentley and Millie. They do everything together. Besties forever. Both 11/10 https://t.co/vU3tKr4vTn https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1 11 10 Bentley
1047 743510151680958465 2016-06-16 18:26:48 Twitter Web Client This is Beya. She doesn't want to swim, so she's not going to. 13/10 nonconforming af (vid by @HappyTailsResor) https://t.co/qGeVjHSUKH https://twitter.com/dog_rates/status/743510151680958465/video/1 13 10 Beya
1048 743253157753532416 2016-06-16 01:25:36 Twitter for iPhone This is Kilo. He cannot reach the snackum. Nifty tongue, but not nifty enough. 10/10 maybe one day puppo https://t.co/gSmp31Zrsx https://twitter.com/dog_rates/status/743253157753532416/photo/1 10 10 Kilo puppo puppo
1049 743222593470234624 2016-06-15 23:24:09 Twitter for iPhone This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa https://twitter.com/dog_rates/status/743222593470234624/photo/1 12 10 NaN pupper pupper
1050 743210557239623680 2016-06-15 22:36:19 Twitter for iPhone Meet Kayla, an underground poker legend. Players lose on purpose hoping she'll let them pet her. 10/10 strategic af https://t.co/EkLku795aO https://twitter.com/dog_rates/status/743210557239623680/photo/1 10 10 Kayla
1051 742534281772302336 2016-06-14 01:49:03 Vine - Make a Scene For anyone who's wondering, this is what happens after a doggo catches it's tail... 11/10 https://t.co/G4fNhzelDv https://vine.co/v/iLTZmtE1FTB 11 10 NaN doggo doggo
1052 742528092657332225 2016-06-14 01:24:27 Twitter for iPhone This is Maxaroni. He's pumped as hell for the summer. Been working on his beach bod for so long. 10/10 https://t.co/UHvjxm9B0O https://twitter.com/dog_rates/status/742528092657332225/photo/1,https://twitter.com/dog_rates/status/742528092657332225/photo/1 10 10 Maxaroni
1053 742465774154047488 2016-06-13 21:16:49 Twitter for iPhone Was just informed about this hero pupper and others like her. Another 14/10, would be an absolute honor to pet https://t.co/hBTzPmj36Z https://twitter.com/dog_rates/status/742465774154047488/photo/1,https://twitter.com/dog_rates/status/742465774154047488/photo/1 14 10 NaN pupper pupper
1054 742423170473463808 2016-06-13 18:27:32 Twitter for iPhone This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b https://twitter.com/dog_rates/status/742423170473463808/photo/1 12 10 Bell
1055 742385895052087300 2016-06-13 15:59:24 Twitter for iPhone This is Phil. That's his comfort stick. He holds onto it whenever he's sad. 11/10 don't be sad Phil https://t.co/ULdPY6CLpq https://twitter.com/dog_rates/status/742385895052087300/photo/1 11 10 Phil
1056 742161199639494656 2016-06-13 01:06:33 Twitter for iPhone This is Doug. He's trying to float away. 12/10 you got this Doug https://t.co/bZaHC3lvTL https://twitter.com/dog_rates/status/742161199639494656/photo/1 12 10 Doug
1057 742150209887731712 2016-06-13 00:22:53 Twitter for iPhone This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper https://t.co/PprXoqZuKY https://twitter.com/dog_rates/status/742150209887731712/photo/1 8 10 Edmund pupper pupper
1058 741793263812808706 2016-06-12 00:44:30 Twitter for iPhone When your crush won't pay attention to you. Both 10/10 tragic af https://t.co/d3LELGVlqu https://twitter.com/dog_rates/status/741793263812808706/photo/1,https://twitter.com/dog_rates/status/741793263812808706/photo/1 10 10 NaN
1059 741743634094141440 2016-06-11 21:27:17 Twitter for iPhone Meet Aqua. She's a sandy pupper. Not sure how she feels about being so sandy. Radical tongue slip. 11/10 petable af https://t.co/rYxJ0UQtbE https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1 11 10 Aqua pupper pupper
1060 741438259667034112 2016-06-11 01:13:51 Twitter for iPhone This is Tucker. He's still figuring out couches. 9/10 keep your head up pup https://t.co/pXU77HPbJ5 https://twitter.com/dog_rates/status/741438259667034112/photo/1 9 10 Tucker
1061 741303864243200000 2016-06-10 16:19:48 Twitter for iPhone This is Theodore. He just saw an adult wearing crocs. Did him a frighten. Lost other ear back in nam. 12/10 hero af https://t.co/O4iw9NlLaQ https://twitter.com/dog_rates/status/741303864243200000/photo/1 12 10 Theodore
1062 741099773336379392 2016-06-10 02:48:49 Vine - Make a Scene This is Ted. He's given up. 11/10 relatable af https://t.co/7muyOQXbGJ https://vine.co/v/ixHYvdxUx1L 11 10 Ted
1063 741067306818797568 2016-06-10 00:39:48 Twitter for iPhone This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC https://twitter.com/dog_rates/status/741067306818797568/photo/1 12 10 just doggo pupper doggopupper
1064 740995100998766593 2016-06-09 19:52:53 Twitter for iPhone This is Leo. He's a vape god. Blows o's for days. Probably drives a Subaru. Definitely owns multiple fedoras. 10/10 https://t.co/nt2x3fHaRJ https://twitter.com/dog_rates/status/740995100998766593/photo/1 10 10 Leo
1065 740711788199743490 2016-06-09 01:07:06 Twitter for iPhone Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet https://t.co/CmLoKMbOHv https://twitter.com/dog_rates/status/740711788199743490/photo/1 9 10 NaN
1066 740699697422163968 2016-06-09 00:19:04 Twitter for iPhone This is Chip. He only mowed half the yard. 8/10 quit the shit Chip we have other things to do https://t.co/LjzZKQ7vmK https://twitter.com/dog_rates/status/740699697422163968/photo/1 8 10 Chip
1067 740676976021798912 2016-06-08 22:48:46 Twitter for iPhone Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://t.co/sMbMw5Z2XC https://twitter.com/dog_rates/status/740676976021798912/photo/1 11 10 Baloo pupper pupper
1068 740373189193256964 2016-06-08 02:41:38 Twitter for iPhone After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1 9 11 NaN
1069 740365076218183684 2016-06-08 02:09:24 Twitter for iPhone When the photographer forgets to tell you where to look... 10/10 https://t.co/u1GHWxhC85 https://twitter.com/dog_rates/status/740365076218183684/photo/1 10 10 NaN
1070 740359016048689152 2016-06-08 01:45:19 Twitter for iPhone This is Chase. He's in a predicament. 9/10 help is on the way buddy https://t.co/0HmBk5sSbW https://twitter.com/dog_rates/status/740359016048689152/photo/1 9 10 Chase
1071 740214038584557568 2016-06-07 16:09:13 Twitter for iPhone This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X https://twitter.com/dog_rates/status/740214038584557568/photo/1 10 10 getting
1072 739979191639244800 2016-06-07 00:36:02 Twitter for iPhone This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.co/7AKdkCOlMf https://twitter.com/dog_rates/status/739979191639244800/photo/1 12 10 Nollie
1073 739932936087216128 2016-06-06 21:32:13 Twitter for iPhone Say hello to Rorie. She's zen af. Just enjoying a treat in the sunlight. 10/10 would immediately trade lives with https://t.co/yctnFptdQ1 https://twitter.com/dog_rates/status/739932936087216128/photo/1 10 10 Rorie
1074 739844404073074688 2016-06-06 15:40:26 Twitter for iPhone This is Simba. He's the grand prize. The trophy is just for participation. 12/10 would pet so damn well https://t.co/4qiuC0lXq5 https://twitter.com/dog_rates/status/739844404073074688/photo/1 12 10 Simba
1075 739623569819336705 2016-06-06 01:02:55 Vine - Make a Scene Here's a doggo that don't need no human. 12/10 independent af (vid by @MichelleLiuCee) https://t.co/vdgtdb6rON https://vine.co/v/iY9Fr1I31U6 12 10 NaN doggo doggo
1076 739606147276148736 2016-06-05 23:53:41 Twitter for iPhone Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 https://t.co/sLUC4th3Zj https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1 9 10 Benji pupper pupper
1077 739544079319588864 2016-06-05 19:47:03 Twitter for iPhone This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P https://twitter.com/dog_rates/status/739544079319588864/photo/1 10 10 NaN
1078 739485634323156992 2016-06-05 15:54:48 Twitter for iPhone This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle https://t.co/rRULp7XFnO https://twitter.com/dog_rates/status/739485634323156992/photo/1,https://twitter.com/dog_rates/status/739485634323156992/photo/1 6 10 Kyle
1079 739238157791694849 2016-06-04 23:31:25 Twitter for iPhone Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t.co/YcXgHfp1EC https://twitter.com/dog_rates/status/739238157791694849/video/1 13 10 NaN doggo doggo
1081 738885046782832640 2016-06-04 00:08:17 Twitter for iPhone This is Charles. He's a Nova Scotian Towel Pouncer. Deadly af. Nifty tongue slip. 11/10 would pet with caution https://t.co/EfejX3iRGr https://twitter.com/dog_rates/status/738885046782832640/photo/1 11 10 Charles
1082 738883359779196928 2016-06-04 00:01:35 Twitter for iPhone When a single soap orb changes your entire perception of the universe... 10/10 https://t.co/9eCXpVExJc https://twitter.com/dog_rates/status/738883359779196928/photo/1,https://twitter.com/dog_rates/status/738883359779196928/photo/1 10 10 NaN
1083 738537504001953792 2016-06-03 01:07:16 Twitter for iPhone This is Bayley. She fell asleep trying to escape her evil fence enclosure. 11/10 night night puppo https://t.co/AxSiqAKEKu https://twitter.com/dog_rates/status/738537504001953792/photo/1,https://twitter.com/dog_rates/status/738537504001953792/photo/1 11 10 Bayley puppo puppo
1084 738402415918125056 2016-06-02 16:10:29 Twitter for iPhone "Don't talk to me or my son ever again" ...10/10 for both https://t.co/s96OYXZIfK https://twitter.com/dog_rates/status/738402415918125056/photo/1 10 10 NaN
1085 738184450748633089 2016-06-02 01:44:22 Twitter for iPhone For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 https://t.co/twxYcPOafl https://twitter.com/dog_rates/status/738184450748633089/photo/1 9 10 NaN
1086 738166403467907072 2016-06-02 00:32:39 Twitter for iPhone This is Axel. He's a professional leaf catcher. 12/10 gifted af https://t.co/P8bgOMMTRs https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1 12 10 Axel
1087 738156290900254721 2016-06-01 23:52:28 Twitter for iPhone This is Storkson. He's wet and sad. 10/10 cheer up pup https://t.co/nrzvzPuTvC https://twitter.com/dog_rates/status/738156290900254721/photo/1 10 10 Storkson
1088 737826014890496000 2016-06-01 02:00:04 Twitter for iPhone This is Remy. He has some long ass ears (probably magical). Also very proud of broken stick. 10/10 such a good boy https://t.co/EZx0YjPjPK https://twitter.com/dog_rates/status/737826014890496000/photo/1,https://twitter.com/dog_rates/status/737826014890496000/photo/1 10 10 Remy
1089 737800304142471168 2016-06-01 00:17:54 Twitter for iPhone This is Bella. She's ubering home after a few too many drinks. 10/10 socially conscious af https://t.co/KxkOgq80Xj https://twitter.com/dog_rates/status/737800304142471168/photo/1 10 10 Bella
1090 737678689543020544 2016-05-31 16:14:39 Twitter for iPhone We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 https://t.co/VflvQLH2y5 https://twitter.com/dog_rates/status/737678689543020544/photo/1 11 10 NaN
1091 737445876994609152 2016-05-31 00:49:32 Twitter for iPhone Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af https://t.co/CaG9MzD3WT https://twitter.com/dog_rates/status/737445876994609152/photo/1 13 10 NaN floofer floofer
1092 737322739594330112 2016-05-30 16:40:14 Twitter for iPhone Say hello to Lily. She's not injured or anything. Just wants everyone to hear her. 9/10 clever af https://t.co/3xqGVH0Dhw https://twitter.com/dog_rates/status/737322739594330112/photo/1 9 10 Lily
1093 737310737551491075 2016-05-30 15:52:33 Twitter for iPhone Everybody stop what you're doing and watch these puppers enjoy summer. Both 13/10 https://t.co/wvjqSCN6iC https://twitter.com/dog_rates/status/737310737551491075/video/1 13 10 NaN
1094 736736130620620800 2016-05-29 01:49:16 Twitter for iPhone This is Chadrick. He's gnarly af 13/10 https://t.co/447tyBN0mW https://twitter.com/dog_rates/status/736736130620620800/photo/1 13 10 Chadrick
1095 736392552031657984 2016-05-28 03:04:00 Vine - Make a Scene Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX https://vine.co/v/iEggaEOiLO3 13 10 mad pupper pupper
1096 736365877722001409 2016-05-28 01:18:00 Twitter for iPhone This is Rory. He's extremely impatient. 11/10 settle down pupper https://t.co/e3tfXJLi40 https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1 11 10 Rory pupper pupper
1097 736225175608430592 2016-05-27 15:58:54 Twitter for iPhone We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc https://twitter.com/dog_rates/status/736225175608430592/photo/1 10 10 very
1098 736010884653420544 2016-05-27 01:47:23 Twitter for iPhone Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 https://t.co/O1TLuYjsNS https://twitter.com/dog_rates/status/736010884653420544/photo/1,https://twitter.com/dog_rates/status/736010884653420544/photo/1 10 10 NaN
1099 735991953473572864 2016-05-27 00:32:10 Twitter for iPhone This is Maxaroni. He's curly af. Also rather fabulous. 11/10 would hug well https://t.co/A216OjIdca https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1 11 10 Maxaroni
1100 735648611367784448 2016-05-26 01:47:51 Twitter for iPhone *faints* 12/10 perfection in pupper form https://t.co/t6TxTwTLEK https://twitter.com/dog_rates/status/735648611367784448/photo/1 12 10 NaN pupper pupper
1101 735635087207878657 2016-05-26 00:54:06 Twitter for iPhone This is Dakota. He hasn't grow into his skin yet. 11/10 would squeeze softly https://t.co/IvFSlNXpgj https://twitter.com/dog_rates/status/735635087207878657/photo/1,https://twitter.com/dog_rates/status/735635087207878657/photo/1 11 10 Dakota
1102 735274964362878976 2016-05-25 01:03:06 Twitter for iPhone We only rate dogs. Please stop sending in your 31 year old sons that won't get out of your house. Thank you... 11/10 https://t.co/aTU53NNUkt https://twitter.com/dog_rates/status/735274964362878976/photo/1,https://twitter.com/dog_rates/status/735274964362878976/photo/1 11 10 NaN
1103 735256018284875776 2016-05-24 23:47:49 Twitter for iPhone This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo https://t.co/MRYv7nDPyS https://twitter.com/dog_rates/status/735256018284875776/photo/1 8 10 Kellogg doggo doggo
1104 735137028879360001 2016-05-24 15:55:00 Twitter for iPhone Meet Buckley. His family &amp; some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper https://t.co/5bdCpPlno9 https://twitter.com/dog_rates/status/735137028879360001/photo/1 9 10 Buckley pupper pupper
1105 734912297295085568 2016-05-24 01:02:00 Twitter for iPhone This is Jax. He's a literal fluffball. Sneaky tongue slip. 10/10 would pet nonstop https://t.co/9MGouPwQmK https://twitter.com/dog_rates/status/734912297295085568/photo/1 10 10 Jax
1106 734787690684657664 2016-05-23 16:46:51 Twitter for iPhone This dog is more successful than I will ever be. 13/10 absolute legend https://t.co/BPoaHySYwA https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1 13 10 NaN
1107 734776360183431168 2016-05-23 16:01:50 Twitter for iPhone This is Livvie. Someone should tell her it's been 47 years since Woodstock. Magical eyes tho 11/10 would stare into https://t.co/qw07vhVHuO https://twitter.com/dog_rates/status/734776360183431168/photo/1 11 10 Livvie
1108 734559631394082816 2016-05-23 01:40:38 Vine - Make a Scene When your friend is turnt af and you're just trying to chill. 10/10 (vid by @presgang) https://t.co/OufVDk23JC https://vine.co/v/iExiLXiiHvX 10 10 NaN
1109 733828123016450049 2016-05-21 01:13:53 Twitter for iPhone This is Terry. The harder you hug him the farther his tongue sticks out. 10/10 magical af https://t.co/RFToQQI8fJ https://twitter.com/dog_rates/status/733828123016450049/photo/1,https://twitter.com/dog_rates/status/733828123016450049/photo/1 10 10 Terry
1110 733822306246479872 2016-05-21 00:50:46 Twitter for iPhone This is Moose. He's a Polynesian Floofer. Dapper af. 10/10 would pet diligently https://t.co/mVfqRdppTL https://twitter.com/dog_rates/status/733822306246479872/photo/1 10 10 Moose floofer floofer
1111 733482008106668032 2016-05-20 02:18:32 Twitter for iPhone "Ello this is dog how may I assist" ...10/10 https://t.co/jeAENpjH7L https://twitter.com/dog_rates/status/733482008106668032/photo/1 10 10 NaN
1112 733460102733135873 2016-05-20 00:51:30 Twitter for iPhone This is Hermione. Her face is as old as time. Appears fluffy af tho. 11/10 pretty damn majestic https://t.co/0b41Q4DKCA https://twitter.com/dog_rates/status/733460102733135873/photo/1 11 10 Hermione
1113 733109485275860992 2016-05-19 01:38:16 Twitter for iPhone Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda https://twitter.com/dog_rates/status/733109485275860992/photo/1 12 10 NaN doggo pupper doggopupper
1114 732732193018155009 2016-05-18 00:39:02 Twitter for iPhone This is Ralpher. He's an East Guinean Flop Dog. Cuddly af. 12/10 https://t.co/rVOLuNRpjH https://twitter.com/dog_rates/status/732732193018155009/photo/1 12 10 Ralpher
1115 732726085725589504 2016-05-18 00:14:46 Twitter for iPhone This is Aldrick. He looks wise af. Also exceptionally fluffy. Only two legs tho (unfortunate). 11/10 would still hug https://t.co/QwiCVLPMNL https://twitter.com/dog_rates/status/732726085725589504/photo/1 11 10 Aldrick
1116 732585889486888962 2016-05-17 14:57:41 Twitter for iPhone When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 https://t.co/sVnJfWVjUp https://twitter.com/dog_rates/status/732585889486888962/photo/1,https://twitter.com/dog_rates/status/732585889486888962/photo/1 10 10 NaN
1117 732375214819057664 2016-05-17 01:00:32 Twitter for iPhone This is Kyle (pronounced 'Mitch'). He strives to be the best doggo he can be. 11/10 would pat on head approvingly https://t.co/aA2GiTGvlE https://twitter.com/dog_rates/status/732375214819057664/photo/1 11 10 Kyle doggo doggo
1118 732005617171337216 2016-05-16 00:31:53 Twitter for iPhone This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1 11 10 Larry
1119 731285275100512256 2016-05-14 00:49:30 Twitter for iPhone This is Solomon. He's a Beneroo Cumberflop. 12/10 would hug passionately https://t.co/5phLAnGPTP https://twitter.com/dog_rates/status/731285275100512256/photo/1 12 10 Solomon
1120 731156023742988288 2016-05-13 16:15:54 Twitter for iPhone Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv https://twitter.com/dog_rates/status/731156023742988288/photo/1 204 170 NaN
1121 730924654643314689 2016-05-13 00:56:32 Twitter for iPhone We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 https://t.co/2yctWAUZ3Z https://twitter.com/dog_rates/status/730924654643314689/photo/1 9 10 unacceptable
1122 730573383004487680 2016-05-12 01:40:42 Twitter for iPhone This is Rooney. He can't comprehend glass. 10/10 it'll be ok pupper https://t.co/CnUl2uDBBV https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1 10 10 Rooney pupper pupper
1123 730427201120833536 2016-05-11 15:59:50 Twitter for iPhone This is Crystal. She's flawless. Really wants to be a frat bro. 11/10 who does she even know here? https://t.co/WyqNFvEulG https://twitter.com/dog_rates/status/730427201120833536/photo/1 11 10 Crystal
1124 730211855403241472 2016-05-11 01:44:07 Twitter for iPhone This is Ziva. She doesn't know how her collar works. 11/10 would totally fix for her https://t.co/K7pthJXjWE https://twitter.com/dog_rates/status/730211855403241472/photo/1 11 10 Ziva
1125 730196704625098752 2016-05-11 00:43:55 Twitter for iPhone This is Charles. He's camera shy. Tail longer than average. Doesn't look overwhelmingly fluffy. 6/10 would still pet https://t.co/rXvcElhoog https://twitter.com/dog_rates/status/730196704625098752/photo/1 6 10 Charles
1126 729854734790754305 2016-05-10 02:05:03 Twitter for iPhone Say hello to Ollie. He conducts this train. He also greets you as you enter. Kind af. 11/10 would pet so firmly https://t.co/jVxOGKEU0z https://twitter.com/dog_rates/status/729854734790754305/photo/1 11 10 Ollie
1128 729823566028484608 2016-05-10 00:01:12 Twitter for iPhone This is Stefan. He's a downright remarkable pup. 13/10 https://t.co/Ebjt6Y4fMh https://twitter.com/dog_rates/status/729823566028484608/photo/1 13 10 Stefan
1129 729463711119904772 2016-05-09 00:11:16 Twitter for iPhone Meet Pupcasso. You can't afford his art. 13/10 talented af https://t.co/f2VUpy4WO0 https://twitter.com/dog_rates/status/729463711119904772/photo/1 13 10 Pupcasso
1130 729113531270991872 2016-05-08 00:59:46 Twitter for iPhone "Challenge accepted"\n10/10 https://t.co/vNjvr5Bl9u https://twitter.com/dog_rates/status/729113531270991872/photo/1,https://twitter.com/dog_rates/status/729113531270991872/photo/1 10 10 NaN
1131 728986383096946689 2016-05-07 16:34:32 Twitter for iPhone This is Puff. He started out on the streets (first pic), but don't let the new smile fool you, still tough af. 11/10 https://t.co/kiuXRXcg4B https://twitter.com/dog_rates/status/728986383096946689/photo/1,https://twitter.com/dog_rates/status/728986383096946689/photo/1 11 10 Puff
1132 728760639972315136 2016-05-07 01:37:30 Twitter for iPhone When you're way too slow for the "down low" portion of a high five. 13/10 https://t.co/Cofwoy7Vpq https://twitter.com/dog_rates/status/728760639972315136/photo/1,https://twitter.com/dog_rates/status/728760639972315136/photo/1 13 10 NaN
1133 728751179681943552 2016-05-07 00:59:55 Twitter for iPhone This is Flurpson. He can't believe it's not butter. 10/10 https://t.co/XD3ort1PsE https://twitter.com/dog_rates/status/728751179681943552/photo/1 10 10 Flurpson
1134 728653952833728512 2016-05-06 18:33:34 Twitter for iPhone This is Coleman. Somebody needs to tell him that he's sitting in chairs wrong. 8/10 https://t.co/O10zjJ2Ixs https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1 8 10 Coleman
1135 728409960103686147 2016-05-06 02:24:02 Twitter for iPhone This is Wallace. He's a skater pup. He said see ya later pup. Can easily do a kick flip. Gnarly af. 10/10 v petable https://t.co/5i8fORVKgr https://twitter.com/dog_rates/status/728409960103686147/photo/1 10 10 Wallace
1136 728387165835677696 2016-05-06 00:53:27 Twitter for iPhone This is Enchilada (yes, that's her real name). She's a Low-Cruisin Plopflopple. Very rare. Only a few left. 12/10 https://t.co/SiaiTWgsfP https://twitter.com/dog_rates/status/728387165835677696/photo/1 12 10 Enchilada
1137 728046963732717569 2016-05-05 02:21:37 Twitter for iPhone This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ https://twitter.com/dog_rates/status/728046963732717569/photo/1 11 10 Raymond
1138 728035342121635841 2016-05-05 01:35:26 Twitter for iPhone This is all I want in my life. 12/10 for super sleepy pupper https://t.co/4RlLA5ObMh https://twitter.com/dog_rates/status/728035342121635841/photo/1,https://twitter.com/dog_rates/status/728035342121635841/photo/1 12 10 NaN pupper pupper
1139 728015554473250816 2016-05-05 00:16:48 Twitter for iPhone This is Rueben. He has reached ultimate pupper zen state. 11/10 tranquil af https://t.co/Z167HgtnBi https://twitter.com/dog_rates/status/728015554473250816/photo/1 11 10 Rueben pupper pupper
1140 727685679342333952 2016-05-04 02:26:00 Twitter for iPhone This is Cilantro. She's a Fellation Gadzooks. Eyes are super magical af. 12/10 could get lost in https://t.co/yJ26LNuyj5 https://twitter.com/dog_rates/status/727685679342333952/photo/1 12 10 Cilantro
1141 727644517743104000 2016-05-03 23:42:26 Twitter for iPhone Here's a doggo struggling to cope with the winds. 13/10 https://t.co/qv3aUwaouT https://twitter.com/dog_rates/status/727644517743104000/photo/1,https://twitter.com/dog_rates/status/727644517743104000/photo/1 13 10 NaN doggo doggo
1142 727524757080539137 2016-05-03 15:46:33 Twitter for iPhone This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af https://t.co/fUyDIFkBwx https://twitter.com/dog_rates/status/727524757080539137/photo/1,https://twitter.com/dog_rates/status/727524757080539137/photo/1 10 10 NaN pupper pupper
1143 727314416056803329 2016-05-03 01:50:44 Twitter for iPhone This pupper was about to explain where that dirt came from but then decided against it. 11/10 https://t.co/SbaelU6zRs https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1 11 10 NaN pupper pupper
1144 727286334147182592 2016-05-02 23:59:09 Twitter for iPhone I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 https://t.co/bbta2Q4URK https://twitter.com/dog_rates/status/727286334147182592/photo/1 9 10 NaN
1145 727175381690781696 2016-05-02 16:38:15 Twitter for iPhone This is Karll. He just wants to go kayaking. 10/10 please someone take Karll kayaking already https://t.co/vXLkvyNQHp https://twitter.com/dog_rates/status/727175381690781696/photo/1,https://twitter.com/dog_rates/status/727175381690781696/photo/1 10 10 Karll
1146 727155742655025152 2016-05-02 15:20:13 Vine - Make a Scene When you're trying to enjoy yourself but end up having to take care of your way too drunk friend. 11/10 https://t.co/BRkhj6tdN0 https://vine.co/v/ixa1ejbXiM7 11 10 NaN
1147 726935089318363137 2016-05-02 00:43:25 Twitter for iPhone This is Sprout. He's just precious af. 12/10 I'd do anything for Sprout https://t.co/DxlX1yTVYY https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1 12 10 Sprout
1148 726887082820554753 2016-05-01 21:32:40 Twitter for iPhone This is Blitz. He's a new dad struggling to cope mentally with the pressures of being a father. Sick shades 10/10 https://t.co/2AVcJ2BZsy https://twitter.com/dog_rates/status/726887082820554753/photo/1 10 10 Blitz
1149 726828223124897792 2016-05-01 17:38:46 Twitter for iPhone This is Bloop. He's a Phoenician Winnebago. Tongue is just wow. That box is all he has (tragic). 12/10 would caress https://t.co/DWNrPPXgHA https://twitter.com/dog_rates/status/726828223124897792/photo/1 12 10 Bloop
1150 726224900189511680 2016-04-30 01:41:23 Twitter for iPhone I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 https://t.co/Rgbni2Ns8z https://twitter.com/dog_rates/status/726224900189511680/photo/1 9 10 NaN
1151 725842289046749185 2016-04-29 00:21:01 Twitter for iPhone This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH https://twitter.com/dog_rates/status/725842289046749185/photo/1 12 10 Colby
1152 725786712245440512 2016-04-28 20:40:11 Twitter for iPhone Say hello to Lillie. She's a Rutabagan Floofem. Poor pupper ate and then passed out. 11/10 relatable af https://t.co/uIdGqug9rw https://twitter.com/dog_rates/status/725786712245440512/photo/1 11 10 Lillie pupper pupper
1153 725729321944506368 2016-04-28 16:52:08 Twitter for iPhone This is Lola. She's a Butternut Splishnsplash. They are known to be ferocious af. 12/10 would absolutely still pet https://t.co/adQt5a6TZU https://twitter.com/dog_rates/status/725729321944506368/photo/1 12 10 Lola
1154 725458796924002305 2016-04-27 22:57:10 Twitter for iPhone Pup had to be removed cuz it wouldn't have been fair to the opposing team. 13/10 absolute legend ⚽️\nhttps://t.co/BHICimO58W https://twitter.com/foxdeportes/status/725136065078521856 13 10 NaN
1155 724983749226668032 2016-04-26 15:29:30 Twitter for iPhone This is Fred-Rick. He dabbles in parkour. The elevation gives him power. 12/10 hopefully visiting a mailbox near you https://t.co/qFqLtudIiD https://twitter.com/dog_rates/status/724983749226668032/photo/1 12 10 Fred
1156 724771698126512129 2016-04-26 01:26:53 Twitter for iPhone Nothin better than a doggo and a sunset. 11/10 https://t.co/JlFqOhrHEs https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1 11 10 NaN doggo doggo
1157 724405726123311104 2016-04-25 01:12:38 Twitter for iPhone This is Ashleigh. She's having Coachella withdrawals. Didn't even go tho. 10/10 stay strong pupper https://t.co/nRUaKWnJfH https://twitter.com/dog_rates/status/724405726123311104/photo/1 10 10 Ashleigh pupper pupper
1158 724049859469295616 2016-04-24 01:38:33 Twitter for iPhone This is Kreggory. He just took a look at his student debt. 10/10 can't even comprehend it https://t.co/XTsZTgilnT https://twitter.com/dog_rates/status/724049859469295616/photo/1 10 10 Kreggory
1159 724046343203856385 2016-04-24 01:24:35 Twitter for iPhone This is Sarge. Not even he knows what his tongue is doing, but it's pretty damn spectacular. 10/10 https://t.co/pIQEdbBxdL https://twitter.com/dog_rates/status/724046343203856385/photo/1 10 10 Sarge
1160 724004602748780546 2016-04-23 22:38:43 Twitter for iPhone This is Luther. He saw a ghost. Spooked af. 11/10 hang in there pupper https://t.co/EdKG43VvEl https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1 11 10 Luther pupper pupper
1161 723912936180330496 2016-04-23 16:34:28 Twitter for iPhone This is Sugar. She's a Bolivian Superfloof. Spherical af. 12/10 would never let go of https://t.co/AhMfUu6Onm https://twitter.com/dog_rates/status/723912936180330496/photo/1 12 10 Sugar
1162 723688335806480385 2016-04-23 01:41:59 Twitter for iPhone This is Reginald. He starts screaming at random. 12/10 cuddly af https://t.co/YgNuDQbv89 https://twitter.com/dog_rates/status/723688335806480385/photo/1,https://twitter.com/dog_rates/status/723688335806480385/photo/1 12 10 Reginald
1163 723673163800948736 2016-04-23 00:41:42 Twitter for iPhone This is Ivar. She is a badass Viking warrior. Will sack your village. 10/10 savage af https://t.co/Dz6MiVssVU https://twitter.com/dog_rates/status/723673163800948736/photo/1 10 10 Ivar
1164 723179728551723008 2016-04-21 16:00:57 Twitter for iPhone This is Jangle. She's addicted to broccoli. It's the only thing she cares about. Tragic af. 8/10 get help pup https://t.co/8dNWp1cSEa https://twitter.com/dog_rates/status/723179728551723008/photo/1 8 10 Jangle
1165 722974582966214656 2016-04-21 02:25:47 Twitter for iPhone Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a https://twitter.com/dog_rates/status/722974582966214656/photo/1 4 20 NaN
1166 722613351520608256 2016-04-20 02:30:23 Twitter for iPhone Meet Schnitzel. He's a Tropicana Floofboop. Getting too big for his favorite basket. 12/10 just so damn fluffy https://t.co/qjd0UJKYUY https://twitter.com/dog_rates/status/722613351520608256/photo/1 12 10 Schnitzel
1167 721503162398597120 2016-04-17 00:58:53 Twitter for iPhone This is Panda. He's happy af. 11/10 https://t.co/IOAk9i4UvE https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1 11 10 Panda
1168 721001180231503872 2016-04-15 15:44:11 Twitter for iPhone This is Oliver. Bath time is upon him. His fear of the wetness postpones his ultimate pupper destiny. 11/10 https://t.co/AFzzKqR4tT https://twitter.com/dog_rates/status/721001180231503872/photo/1 11 10 Oliver pupper pupper
1169 720785406564900865 2016-04-15 01:26:47 Twitter for iPhone This is Archie. He hears everything you say. Doesn't matter where you are. 12/10 https://t.co/0l4I8famYp https://twitter.com/dog_rates/status/720785406564900865/photo/1 12 10 Archie
1170 720775346191278080 2016-04-15 00:46:48 Twitter for iPhone This is Berkeley. He's in a predicament. 10/10 someone help him https://t.co/XSEXdQupej https://twitter.com/dog_rates/status/720775346191278080/photo/1 10 10 Berkeley
1171 720415127506415616 2016-04-14 00:55:25 Twitter for iPhone Garden's coming in nice this year. 10/10 https://t.co/5Lra3e4rrw https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1 10 10 NaN
1172 720389942216527872 2016-04-13 23:15:21 Twitter for iPhone This is Ralphé. He patrols the lake. Looking for babes. 11/10 https://t.co/Pb6iMmo0wk https://twitter.com/dog_rates/status/720389942216527872/photo/1 11 10 Ralphé
1173 720340705894408192 2016-04-13 19:59:42 Twitter for iPhone This is Derek. He just got balled on. Can't even get up. Poor thing. 10/10 hang in there pupper https://t.co/BIRRF3bcWH https://twitter.com/dog_rates/status/720340705894408192/photo/1 10 10 Derek pupper pupper
1174 720059472081784833 2016-04-13 01:22:10 Twitter for iPhone This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort https://t.co/pRHX8yn9Yu https://twitter.com/dog_rates/status/720059472081784833/photo/1 9 10 Charleson
1175 720043174954147842 2016-04-13 00:17:25 Twitter for iPhone This is Neptune. He's a Snowy Swiss Mountain Floofapolis. Cheeky wink. Tongue nifty af. 11/10 would pet so firmly https://t.co/SoZq2Xoopv https://twitter.com/dog_rates/status/720043174954147842/photo/1 11 10 Neptune
1176 719991154352222208 2016-04-12 20:50:42 Twitter for iPhone This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 https://t.co/mvnBGaWULV https://twitter.com/dog_rates/status/719991154352222208/photo/1,https://twitter.com/dog_rates/status/719991154352222208/photo/1 10 10 NaN doggo doggo
1177 719704490224398336 2016-04-12 01:51:36 Twitter for iPhone This is Clyde. He's making sure you're having a good train ride. 12/10 great pupper https://t.co/y206kWHAj0 https://twitter.com/dog_rates/status/719704490224398336/photo/1 12 10 Clyde pupper pupper
1178 719551379208073216 2016-04-11 15:43:12 Twitter for iPhone This is Harnold. He accidentally opened the front facing camera. 10/10 get it together Harnold https://t.co/S6JHaSMtln https://twitter.com/dog_rates/status/719551379208073216/photo/1 10 10 Harnold
1179 719367763014393856 2016-04-11 03:33:34 Twitter for iPhone Meet Sid &amp; Murphy. Murphy floats alongside Sid and whispers motivational quotes in his ear. Magical af. Both 11/10 https://t.co/7mmjyearQW https://twitter.com/dog_rates/status/719367763014393856/photo/1 11 10 Sid
1180 719339463458033665 2016-04-11 01:41:07 Twitter for iPhone Say hello to Lucy and Sophie. They think they're the same size. Both 10/10 would snug at same time https://t.co/HW50zkcf2R https://twitter.com/dog_rates/status/719339463458033665/photo/1 10 10 Lucy
1181 719332531645071360 2016-04-11 01:13:34 Twitter for iPhone This is Pippa. She managed to start the car but is waiting for you to buckle up before driving. Responsible af 11/10 https://t.co/htrlmC7saz https://twitter.com/dog_rates/status/719332531645071360/photo/1 11 10 Pippa
1182 718971898235854848 2016-04-10 01:20:33 Twitter for iPhone This is Sadie. She is prepared for battle. 10/10 https://t.co/JRckDkZVRT https://twitter.com/dog_rates/status/718971898235854848/photo/1 10 10 Sadie
1183 718939241951195136 2016-04-09 23:10:47 Twitter for iPhone This is Otis. Everybody look at Otis. 12/10 would probably faint while petting https://t.co/I9qoe1uEih https://twitter.com/dog_rates/status/718939241951195136/photo/1 12 10 Otis
1184 718631497683582976 2016-04-09 02:47:55 Twitter for iPhone We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t.co/D9jbbmPmos https://twitter.com/dog_rates/status/718631497683582976/photo/1 10 10 NaN
1185 718613305783398402 2016-04-09 01:35:37 Twitter for iPhone This is Carper. He's a Tortellini Angiosperm. In desperate need of a petting. 11/10 would hug softly https://t.co/lK9YDkRzPj https://twitter.com/dog_rates/status/718613305783398402/photo/1 11 10 Carper
1186 718540630683709445 2016-04-08 20:46:50 Twitter for iPhone Get you a pup that can do both. 10/10 https://t.co/zSbyvm62xZ https://twitter.com/dog_rates/status/718540630683709445/photo/1,https://twitter.com/dog_rates/status/718540630683709445/photo/1 10 10 NaN
1187 718460005985447936 2016-04-08 15:26:28 Twitter for iPhone Meet Bowie. He's listening for underground squirrels. Smart af. Left eye is considerably magical. 9/10 would so pet https://t.co/JyNmyjy3fe https://twitter.com/dog_rates/status/718460005985447936/photo/1 9 10 Bowie
1188 718454725339934721 2016-04-08 15:05:29 Twitter for iPhone This pic is old but I hadn't seen it until today and had to share. Creative af. 13/10 very good boy, would pet well https://t.co/4kD16wMA1Z https://twitter.com/dog_rates/status/718454725339934721/photo/1 13 10 NaN
1189 718246886998687744 2016-04-08 01:19:36 Twitter for iPhone This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target https://t.co/FmxOpf2Sgl https://twitter.com/dog_rates/status/718246886998687744/photo/1 3 10 Alexanderson
1190 718234618122661888 2016-04-08 00:30:51 Twitter for iPhone This is Suki. She was born with a blurry tail (unfortunate). Next level tongue tho. 11/10 nifty hardwood https://t.co/05S8oYztgb https://twitter.com/dog_rates/status/718234618122661888/photo/1 11 10 Suki
1191 717841801130979328 2016-04-06 22:29:56 Twitter for iPhone This is Barclay. His father was a banana. 11/10 appeeling af https://t.co/ucOEfr2rjV https://twitter.com/dog_rates/status/717841801130979328/photo/1 11 10 Barclay
1192 717790033953034240 2016-04-06 19:04:14 Twitter for iPhone Here's a badass mystery pupper. You weren't aware that you owe him money, but you do. 10/10 shades sick af https://t.co/fv9e9AtzSG https://twitter.com/dog_rates/status/717790033953034240/photo/1 10 10 NaN pupper pupper
1193 717537687239008257 2016-04-06 02:21:30 Twitter for iPhone People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n https://twitter.com/dog_rates/status/717537687239008257/photo/1 11 10 NaN
1194 717428917016076293 2016-04-05 19:09:17 Vine - Make a Scene This is Skittle. He's trying to communicate. 11/10 solid effort https://t.co/6WTfJvtKx6 https://vine.co/v/iIhEU2lVqxz 11 10 Skittle
1195 717421804990701568 2016-04-05 18:41:02 Twitter for iPhone This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly https://t.co/LBJqxMGaHi https://twitter.com/dog_rates/status/717421804990701568/photo/1,https://twitter.com/dog_rates/status/717421804990701568/photo/1 9 10 Ebby
1196 717047459982213120 2016-04-04 17:53:31 Twitter for iPhone This is Flávio (pronounced Baxter). He's a Benesnoop Cumberdog. Super rare. Symmetrical. 12/10 would pet so well https://t.co/fGgleFiBPq https://twitter.com/dog_rates/status/717047459982213120/photo/1 12 10 Flávio
1197 717009362452090881 2016-04-04 15:22:08 Twitter for iPhone This is Smokey. He's having some sort of existential crisis. 10/10 hang in there pupper https://t.co/JmgF4dMpw0 https://twitter.com/dog_rates/status/717009362452090881/photo/1 10 10 Smokey pupper pupper
1198 716802964044845056 2016-04-04 01:41:58 Twitter for iPhone This is Link. He struggles with couches. 10/10 would assist https://t.co/SbX4e6Yg3o https://twitter.com/dog_rates/status/716802964044845056/photo/1,https://twitter.com/dog_rates/status/716802964044845056/photo/1 10 10 Link
1199 716791146589110272 2016-04-04 00:55:01 Twitter for iPhone Meet Jennifur. She's supposed to be navigating. Not even buckled up. Insubordinate &amp; churlish. 11/10 would still pet https://t.co/h0trcJohYO https://twitter.com/dog_rates/status/716791146589110272/photo/1 11 10 Jennifur
1200 716730379797970944 2016-04-03 20:53:33 Twitter for iPhone There has clearly been a mistake. Pup did nothing wrong. 12/10 would help escape\nhttps://t.co/Juid3nnLbC https://twitter.com/chpsanfrancisco/status/716637124322177024 12 10 NaN
1201 716447146686459905 2016-04-03 02:08:05 Vine - Make a Scene This is Ozzy. He's acrobatic af. Legendary pupper status achieved. 13/10 https://t.co/gHWsCTu90E https://vine.co/v/eMmXVPn5eQK 13 10 Ozzy pupper pupper
1202 716439118184652801 2016-04-03 01:36:11 Twitter for iPhone This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq https://twitter.com/dog_rates/status/716439118184652801/photo/1 50 50 Bluebert
1203 716285507865542656 2016-04-02 15:25:47 Twitter for iPhone This is Stephanus. She stays woke. 12/10 https://t.co/WIWabMngQZ https://twitter.com/dog_rates/status/716285507865542656/photo/1,https://twitter.com/dog_rates/status/716285507865542656/photo/1 12 10 Stephanus
1204 716080869887381504 2016-04-02 01:52:38 Twitter for iPhone Here's a super majestic doggo and a sunset 11/10 https://t.co/UACnoyi8zu https://twitter.com/dog_rates/status/716080869887381504/photo/1,https://twitter.com/dog_rates/status/716080869887381504/photo/1 11 10 NaN doggo doggo
1205 715928423106027520 2016-04-01 15:46:52 Twitter for iPhone This is Bubbles. He's a Yorkshire Piccolope. 11/10 would snug aggressively https://t.co/3BhMojONxq https://twitter.com/dog_rates/status/715928423106027520/photo/1 11 10 Bubbles
1206 715758151270801409 2016-04-01 04:30:16 Vine - Make a Scene This is old now but it's absolutely heckin fantastic and I can't not share it with you all. 13/10 https://t.co/wJX74TSgzP https://vine.co/v/hYdLVKDpAFu 13 10 NaN
1207 715733265223708672 2016-04-01 02:51:22 Twitter for iPhone This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 https://twitter.com/dog_rates/status/715733265223708672/photo/1 10 10 NaN
1208 715704790270025728 2016-04-01 00:58:13 Vine - Make a Scene This is Bentley. He gives kisses back. 11/10 precious af (vid by @emmaallen25) https://t.co/9PnKkKzoUp https://vine.co/v/ijAlDnuOD0l 11 10 Bentley
1209 715696743237730304 2016-04-01 00:26:15 Twitter for iPhone Meet Toby. He's a Lithuanian High-Steppin Stickeroo. One of the more accomplished Stickeroos around. 10/10 so nifty https://t.co/cYPHuJYTjC https://twitter.com/dog_rates/status/715696743237730304/photo/1 10 10 Toby
1210 715680795826982913 2016-03-31 23:22:53 Twitter for iPhone This is Zeus. He's downright fabulous. 12/10 https://t.co/sSugyyRuTp https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1 12 10 Zeus
1211 715360349751484417 2016-03-31 02:09:32 Twitter for iPhone This is Bertson. He just wants to say hi. 11/10 would boop nose https://t.co/hwv7Wq6gDA https://twitter.com/dog_rates/status/715360349751484417/photo/1 11 10 Bertson
1212 715342466308784130 2016-03-31 00:58:29 Twitter for iPhone This is Oscar. He's a world renowned snowball inspector. It's a ruff job but someone has to do it. 10/10 great guy https://t.co/vSufMAKm3C https://twitter.com/dog_rates/status/715342466308784130/photo/1,https://twitter.com/dog_rates/status/715342466308784130/photo/1 10 10 Oscar
1213 715220193576927233 2016-03-30 16:52:36 Twitter for iPhone This is Nico. His selfie game is strong af. Excellent use of a sneaky tongue slip. 10/10 star material https://t.co/1OBdJkMOFx https://twitter.com/dog_rates/status/715220193576927233/photo/1 10 10 Nico
1214 715200624753819648 2016-03-30 15:34:51 Twitter for iPhone This is Michelangelope. He's half coffee cup. Rare af. 12/10 would hug until someone stopped me https://t.co/tvVDY0G911 https://twitter.com/dog_rates/status/715200624753819648/photo/1 12 10 Michelangelope
1215 715009755312439296 2016-03-30 02:56:24 Twitter for iPhone This is Siba. She's remarkably mobile. Very sleepy as well. 12/10 would happily transport https://t.co/TjnI33RE1i https://twitter.com/dog_rates/status/715009755312439296/photo/1 12 10 Siba
1216 714982300363173890 2016-03-30 01:07:18 Twitter for iPhone This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert https://t.co/jRm5J3YCmj https://twitter.com/dog_rates/status/714982300363173890/photo/1 9 10 Calbert
1217 714962719905021952 2016-03-29 23:49:30 Vine - Make a Scene Just in case anyone's having a bad day. 12/10 would bounce with https://t.co/T9sgP9ttnQ https://vine.co/v/inVtemLt9tE 12 10 NaN
1218 714957620017307648 2016-03-29 23:29:14 Twitter for iPhone This is Curtis. He's an Albino Haberdasher. Terrified of dandelions. They really spook him up. 10/10 it'll be ok pup https://t.co/s8YcfZrWhK https://twitter.com/dog_rates/status/714957620017307648/photo/1 10 10 Curtis
1219 714631576617938945 2016-03-29 01:53:39 Twitter for iPhone This is Benedict. He's a feisty pup. Needs a brushing. Portable af. Looks very angry actually. 4/10 might not pet https://t.co/3oeFfHjv0Z https://twitter.com/dog_rates/status/714631576617938945/photo/1 4 10 Benedict
1220 714606013974974464 2016-03-29 00:12:05 Twitter for iPhone Here are two lil cuddly puppers. Both 12/10 would snug like so much https://t.co/zO4eb7C4tG https://twitter.com/dog_rates/status/714606013974974464/photo/1 12 10 NaN
1221 714485234495041536 2016-03-28 16:12:09 Vine - Make a Scene This is Blitz. He screams. 10/10 (vid by @yeaahliv) https://t.co/MfW2aym5UF https://vine.co/v/iDrOvVqq0A6 10 10 Blitz
1222 714258258790387713 2016-03-28 01:10:13 Twitter for iPhone Meet Travis and Flurp. Travis is pretty chill but Flurp can't lie down properly. 10/10 &amp; 8/10\nget it together Flurp https://t.co/Akzl5ynMmE https://twitter.com/dog_rates/status/714258258790387713/photo/1 10 10 Travis
1223 714251586676113411 2016-03-28 00:43:43 Twitter for iPhone This is Thumas. He hates potted plants. 8/10 wtf Thumas https://t.co/rDVueNIcEi https://twitter.com/dog_rates/status/714251586676113411/photo/1,https://twitter.com/dog_rates/status/714251586676113411/photo/1 8 10 Thumas
1224 714214115368108032 2016-03-27 22:14:49 Twitter for iPhone Happy Easter from the squad! 🐇🐶 13/10 for all https://t.co/YMx4KWJUAB https://twitter.com/dog_rates/status/714214115368108032/photo/1 13 10 NaN
1225 714141408463036416 2016-03-27 17:25:54 Twitter for iPhone I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell https://t.co/O2RlKXigHu https://twitter.com/dog_rates/status/714141408463036416/photo/1 10 10 NaN
1226 713919462244790272 2016-03-27 02:43:58 Twitter for iPhone This is Kanu. He's a Freckled Ticonderoga. Simply flawless. 12/10 would perform an elaborate heist to capture https://t.co/7vyAzIURrE https://twitter.com/dog_rates/status/713919462244790272/photo/1 12 10 Kanu
1227 713909862279876608 2016-03-27 02:05:49 Vine - Make a Scene This is Doug. His nose is legendary af. 12/10 (vid by @probably_trey) https://t.co/7IWKfbfihS https://vine.co/v/iDWlapaXWmm 12 10 Doug
1228 713900603437621249 2016-03-27 01:29:02 Twitter for iPhone Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 https://twitter.com/dog_rates/status/713900603437621249/photo/1 99 90 NaN
1229 713761197720473600 2016-03-26 16:15:05 Twitter for iPhone This is Piper. She would really like that tennis ball core. Super sneaky tongue slip. 12/10 precious af https://t.co/QP6GHi5az9 https://twitter.com/dog_rates/status/713761197720473600/photo/1,https://twitter.com/dog_rates/status/713761197720473600/photo/1 12 10 Piper
1230 713411074226274305 2016-03-25 17:03:49 Twitter for iPhone Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose https://t.co/jVJJKlPbvq https://twitter.com/dog_rates/status/713411074226274305/photo/1 11 10 NaN
1231 713177543487135744 2016-03-25 01:35:51 Twitter for iPhone This is Lance. Lance doesn't give a shit. 10/10 we should all be more like Lance https://t.co/SqnG9Ap28J https://twitter.com/dog_rates/status/713177543487135744/photo/1 10 10 Lance
1232 713175907180089344 2016-03-25 01:29:21 Twitter for iPhone Say hello to Opie and Clarkus. Clarkus fell asleep so Opie buried him. Ruthless af 10/10 for both https://t.co/xT7XaY4gnW https://twitter.com/dog_rates/status/713175907180089344/photo/1 10 10 Opie
1233 712809025985978368 2016-03-24 01:11:29 Twitter for iPhone This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn https://twitter.com/dog_rates/status/712809025985978368/photo/1 10 10 Stubert
1234 712717840512598017 2016-03-23 19:09:09 Twitter for iPhone Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 https://t.co/83RGhdIQz2 https://twitter.com/dog_rates/status/712717840512598017/photo/1 10 10 NaN
1235 712668654853337088 2016-03-23 15:53:42 Twitter for iPhone Say hello to Sunny and Roxy. They pull things out of water together. 10/10 for both https://t.co/88aedAmxcl https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1 10 10 Sunny
1236 712438159032893441 2016-03-23 00:37:48 Twitter for iPhone This is Kane. He's a semi-submerged Haitian Huffleplop. Happy af. Sick waterfall. 11/10 would pat head approvingly https://t.co/7zjEC501Ul https://twitter.com/dog_rates/status/712438159032893441/photo/1 11 10 Kane
1237 712309440758808576 2016-03-22 16:06:19 Twitter for iPhone Reminder that we made our first set of stickers available! All are 12/10 would stick\nUse code "pupper" at checkout🐶\n\nhttps://t.co/kJIMNyMNKV https://twitter.com/stickergrub/status/709919141004595201 12 10 NaN pupper pupper
1238 712097430750289920 2016-03-22 02:03:52 Twitter for iPhone I can't even comprehend how confused this dog must be right now. 10/10 https://t.co/8AGcQ4hIfK https://twitter.com/dog_rates/status/712097430750289920/photo/1 10 10 NaN
1239 712092745624633345 2016-03-22 01:45:15 Twitter for iPhone This is Steven. He's inverted af. Also very helpful. Scans anything you want for free. Takes him a while tho. 7/10 https://t.co/tA0ZiQ7JcG https://twitter.com/dog_rates/status/712092745624633345/photo/1 7 10 Steven
1240 712085617388212225 2016-03-22 01:16:55 Twitter for iPhone Say hello to Olive and Ruby. They are best buddies. Both 11/10 \n1 like = 1 buddy https://t.co/yagmFdKlyL https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1 11 10 Olive
1241 712065007010385924 2016-03-21 23:55:01 Twitter for iPhone This is Chester. He's clearly in charge of the other dogs. Weird ass paws. Not fit for fetch. 6/10 would still pet https://t.co/o2GvskrhHt https://twitter.com/dog_rates/status/712065007010385924/photo/1 6 10 Chester
1243 711968124745228288 2016-03-21 17:30:03 Twitter for iPhone Meet Winston. He's trapped in a cup of coffee. Poor pupper. 10/10 someone free him https://t.co/2e6cUtKUuc https://twitter.com/dog_rates/status/711968124745228288/photo/1 10 10 Winston pupper pupper
1244 711743778164514816 2016-03-21 02:38:34 Twitter for iPhone Meet Roosevelt. He's calculating the best case scenario if he drops out instead of doing math hw. 11/10 relatable af https://t.co/QcSIRDpfVg https://twitter.com/dog_rates/status/711743778164514816/photo/1 11 10 Roosevelt
1245 711732680602345472 2016-03-21 01:54:29 Twitter for iPhone I want to hear the joke this dog was just told. 10/10 https://t.co/1KiuZqqOD4 https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1 10 10 NaN
1246 711694788429553666 2016-03-20 23:23:54 Twitter for iPhone Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ https://twitter.com/dog_rates/status/711694788429553666/photo/1 13 10 NaN
1247 711652651650457602 2016-03-20 20:36:28 Twitter for iPhone This is Gary. He just wanted to say hi. 9/10 very personable pup https://t.co/Sk3CbhmKSW https://twitter.com/dog_rates/status/711652651650457602/photo/1 9 10 Gary
1248 711363825979756544 2016-03-20 01:28:47 Twitter for iPhone "Please, no puparazzi" 11/10 https://t.co/nJIXSPfedK https://twitter.com/dog_rates/status/711363825979756544/photo/1,https://twitter.com/dog_rates/status/711363825979756544/photo/1 11 10 NaN
1249 711306686208872448 2016-03-19 21:41:44 Twitter for iPhone What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair https://t.co/wcwoGOkZvz https://twitter.com/dog_rates/status/711306686208872448/photo/1,https://twitter.com/dog_rates/status/711306686208872448/photo/1 3 10 NaN
1250 711008018775851008 2016-03-19 01:54:56 Twitter for iPhone This is Chuckles. He had a balloon but he accidentally let go of it and it floated away. 11/10 hang in there pupper https://t.co/68iNM7B5gW https://twitter.com/dog_rates/status/711008018775851008/photo/1 11 10 Chuckles pupper pupper
1251 710997087345876993 2016-03-19 01:11:29 Twitter for iPhone Meet Milo and Amos. They are the best of pals. Both 12/10 would pet at the same time https://t.co/Mv37BHEyyD https://twitter.com/dog_rates/status/710997087345876993/photo/1 12 10 Milo
1252 710844581445812225 2016-03-18 15:05:29 Twitter for iPhone This is Staniel. His selfie game is strong af. 10/10 I'd snapchat with Staniel https://t.co/UgkTw7TKyM https://twitter.com/dog_rates/status/710844581445812225/photo/1 10 10 Staniel
1253 710833117892898816 2016-03-18 14:19:56 Twitter for iPhone Say hello to Sora. She's an Egyptian Pumpernickel. Mesmerizing af. 12/10 would bring home to mom https://t.co/PmTR4kxZkq https://twitter.com/dog_rates/status/710833117892898816/photo/1 12 10 Sora
1254 710658690886586372 2016-03-18 02:46:49 Twitter for iPhone Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 https://twitter.com/dog_rates/status/710658690886586372/photo/1 80 80 NaN
1255 710609963652087808 2016-03-17 23:33:12 Vine - Make a Scene I've watched this a million times and you probably will too. 12/10 (vid by @emily_galasso) https://t.co/DU7Rb3NDiy https://vine.co/v/idaTpwH5TgU 12 10 NaN
1256 710588934686908417 2016-03-17 22:09:38 Twitter for iPhone This is Beemo. He's a Chubberflop mix. 12/10 would cross the world for https://t.co/kzMVMU8HBV https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1 12 10 Beemo
1257 710296729921429505 2016-03-17 02:48:31 Vine - Make a Scene This is Oshie. 12/10 please enjoy (vid by @catherinec1389) https://t.co/VmtzwAuotq https://vine.co/v/iw9hUFAMerV 12 10 Oshie
1258 710283270106132480 2016-03-17 01:55:02 Twitter for iPhone This is Gunner. He's a Figamus Newton. King of the peek-a-boo. Cool jeans. 11/10 https://t.co/ONuBILIYXZ https://twitter.com/dog_rates/status/710283270106132480/photo/1,https://twitter.com/dog_rates/status/710283270106132480/photo/1 11 10 Gunner
1259 710272297844797440 2016-03-17 01:11:26 Twitter for iPhone We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 https://twitter.com/dog_rates/status/710272297844797440/photo/1 11 10 NaN
1260 710269109699739648 2016-03-17 00:58:46 Twitter for iPhone The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all https://t.co/OcCDb2bng5 https://twitter.com/dog_rates/status/710269109699739648/photo/1 13 10 NaN
1261 710153181850935296 2016-03-16 17:18:07 Twitter for iPhone This is Lacy. She's tipping her hat to you. Daydreams of her life back on the frontier. 11/10 would pet so well https://t.co/fG5Pk3Et1I https://twitter.com/dog_rates/status/710153181850935296/photo/1,https://twitter.com/dog_rates/status/710153181850935296/photo/1 11 10 Lacy
1262 710140971284037632 2016-03-16 16:29:35 Twitter for iPhone This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 https://t.co/nLuPY3pY12 https://twitter.com/dog_rates/status/710140971284037632/photo/1 8 10 Tater
1263 710117014656950272 2016-03-16 14:54:24 Twitter for iPhone This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty https://t.co/h1OX2mLtxV https://twitter.com/dog_rates/status/710117014656950272/photo/1,https://twitter.com/dog_rates/status/710117014656950272/photo/1 11 10 NaN pupper pupper
1264 709918798883774466 2016-03-16 01:46:45 Twitter for iPhone Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG https://twitter.com/dog_rates/status/709918798883774466/photo/1,https://twitter.com/dog_rates/status/709918798883774466/photo/1 12 10 Watson
1265 709901256215666688 2016-03-16 00:37:03 Twitter for iPhone WeRateDogs stickers are here and they're 12/10! Use code "puppers" at checkout 🐶🐾\n\nShop now: https://t.co/k5xsufRKYm https://t.co/ShXk46V13r http://goo.gl/ArWZfi,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1 12 10 NaN
1266 709852847387627521 2016-03-15 21:24:41 Twitter for iPhone *lets out a tiny whimper and then collapses* ...12/10 https://t.co/BNdVZEHRow https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1 12 10 NaN
1267 709566166965075968 2016-03-15 02:25:31 Twitter for iPhone This is Olaf. He's gotta be rare. Seems sturdy. Tail is floofy af. 12/10 would do whatever it takes to pet https://t.co/E9jaU59bh9 https://twitter.com/dog_rates/status/709566166965075968/photo/1 12 10 Olaf
1268 709556954897764353 2016-03-15 01:48:55 Twitter for iPhone This is Cecil. She's a Gigglefloof Poofer. Outdoorsy af. One with nature. 12/10 would strategically capture https://t.co/ijJB0DuOIC https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1 12 10 Cecil
1269 709519240576036864 2016-03-14 23:19:03 Twitter for iPhone This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell https://t.co/aczGAV2dK4 https://twitter.com/dog_rates/status/709519240576036864/photo/1 9 10 Vince
1270 709449600415961088 2016-03-14 18:42:20 Twitter for iPhone Meet Karma. She's just a head. Lost body during the Second Punic War (unfortunate). Loves to travel 10/10 petable af https://t.co/c6af6nYEPo https://twitter.com/dog_rates/status/709449600415961088/photo/1,https://twitter.com/dog_rates/status/709449600415961088/photo/1 10 10 Karma
1271 709409458133323776 2016-03-14 16:02:49 Twitter for iPhone This is Billy. He sensed a squirrel. 8/10 damn it Billy https://t.co/Yu0K98VZ9A https://twitter.com/dog_rates/status/709409458133323776/photo/1 8 10 Billy
1272 709225125749587968 2016-03-14 03:50:21 Twitter for iPhone This is Walker. He's a Butternut Khalifa. Appears fuzzy af. 11/10 would hug for a ridiculous amount of time https://t.co/k6fEWHSALn https://twitter.com/dog_rates/status/709225125749587968/photo/1 11 10 Walker
1273 709207347839836162 2016-03-14 02:39:42 Twitter for iPhone This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg https://twitter.com/dog_rates/status/709207347839836162/photo/1 11 10 Penny
1274 709198395643068416 2016-03-14 02:04:08 Twitter for iPhone From left to right:\nCletus, Jerome, Alejandro, Burp, &amp; Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK https://twitter.com/dog_rates/status/709198395643068416/photo/1 45 50 NaN
1275 709179584944730112 2016-03-14 00:49:23 Vine - Make a Scene This is Sammy. He's in a tree. Very excited about it. 13/10 https://t.co/CLe9ETEjeF https://vine.co/v/iwAjdlEjwMl 13 10 Sammy
1276 709158332880297985 2016-03-13 23:24:56 Twitter for iPhone Meet Rodney. He's a Ukranian Boomchicka. Outside but would like to be inside. Only has one ear (unfortunate) 10/10 https://t.co/FjAj3ggXrR https://twitter.com/dog_rates/status/709158332880297985/photo/1 10 10 Rodney
1277 709042156699303936 2016-03-13 15:43:18 Twitter for iPhone This is Klevin. He's addicted to sandwiches (yes a hotdog is a sandwich fight me) It's tearing his family apart 9/10 https://t.co/7BkkVNu5pd https://twitter.com/dog_rates/status/709042156699303936/photo/1 9 10 Klevin
1278 708853462201716736 2016-03-13 03:13:29 Vine - Make a Scene This is Lucy. She doesn't understand fetch. 8/10 try turning off and back on (vid by @rileyyoungblood) https://t.co/RXjEwpVJf0 https://vine.co/v/iHl2UDEBZ95 8 10 Lucy
1279 708845821941387268 2016-03-13 02:43:08 Twitter for iPhone Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 https://t.co/5DLJB4ssvI https://twitter.com/dog_rates/status/708845821941387268/photo/1,https://twitter.com/dog_rates/status/708845821941387268/photo/1 9 10 NaN pupper pupper
1280 708834316713893888 2016-03-13 01:57:25 Twitter for iPhone Meet Malikai. He was rolling around having fun when he remembered the inevitable heat death of the universe. 10/10 https://t.co/Vd2FqHIIGn https://twitter.com/dog_rates/status/708834316713893888/photo/1 10 10 Malikai
1281 708810915978854401 2016-03-13 00:24:26 Twitter for iPhone This is Mister. He's a wonderful father to his two pups. Heartwarming af. 10/10 for all https://t.co/2KcuJXL2r4 https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1 10 10 Mister
1282 708738143638450176 2016-03-12 19:35:15 Twitter for iPhone This is Coco. She gets to stay on the Bachelor for another week. Super pumped 11/10 https://t.co/wsCB6LFNxD https://twitter.com/dog_rates/status/708738143638450176/photo/1 11 10 Coco
1283 708711088997666817 2016-03-12 17:47:45 Twitter for iPhone This is Smokey. He really likes tennis balls. 11/10 https://t.co/Ah7WlYTUBQ https://twitter.com/dog_rates/status/708711088997666817/photo/1,https://twitter.com/dog_rates/status/708711088997666817/photo/1 11 10 Smokey
1284 708479650088034305 2016-03-12 02:28:06 Twitter for iPhone Meet Bear. He's a Beneboop Cumberclap. Extremely unamused. 13/10 I'm in love with this picture https://t.co/uC8kUqAz0W https://twitter.com/dog_rates/status/708479650088034305/photo/1 13 10 Bear
1285 708469915515297792 2016-03-12 01:49:25 Twitter for iPhone This is Bobble. He's a Croatian Galifianakis. Hears everything within 400 miles. 11/10 would snug diligently https://t.co/VwDc6PTDzk https://twitter.com/dog_rates/status/708469915515297792/photo/1 11 10 Bobble
1286 708400866336894977 2016-03-11 21:15:02 Vine - Make a Scene RT if you are as ready for summer as this pup is 12/10 https://t.co/xdNNEZdGJY https://vine.co/v/iHFqnjKVbIQ 12 10 NaN
1287 708356463048204288 2016-03-11 18:18:36 Twitter for iPhone This is Oliver. That is his castle. He protects it with his life. He's also squishy af. 10/10 would squish softly https://t.co/oSuEGw0BhX https://twitter.com/dog_rates/status/708356463048204288/photo/1,https://twitter.com/dog_rates/status/708356463048204288/photo/1 10 10 Oliver
1288 708349470027751425 2016-03-11 17:50:48 Twitter for iPhone This is River. He's changing the trumpet game. Innovative af. 11/10 such a good boy https://t.co/tK7a0AxQfd https://twitter.com/dog_rates/status/708349470027751425/photo/1 11 10 River
1289 708149363256774660 2016-03-11 04:35:39 Twitter for iPhone This is Jebberson. He's the reigning hide and seek world champion. 10/10 hasn't lost his touch https://t.co/VEFkvWCoHF https://twitter.com/dog_rates/status/708149363256774660/photo/1 10 10 Jebberson
1290 708130923141795840 2016-03-11 03:22:23 Twitter for iPhone Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 https://t.co/XKhobeGuvT https://twitter.com/dog_rates/status/708130923141795840/photo/1 11 10 NaN
1291 708119489313951744 2016-03-11 02:36:57 Twitter for iPhone This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen https://t.co/kDamUfeIpm https://twitter.com/dog_rates/status/708119489313951744/photo/1 9 10 Cooper
1292 708109389455101952 2016-03-11 01:56:49 Twitter for iPhone This is Remington. He was caught off guard by the magical floating cheese. Spooked af. 10/10 deep breaths pup https://t.co/mhPSADiJmZ https://twitter.com/dog_rates/status/708109389455101952/photo/1 10 10 Remington
1293 708026248782585858 2016-03-10 20:26:26 Twitter for iPhone Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) https://t.co/5AJs8TIV1U https://twitter.com/dog_rates/status/708026248782585858/video/1 13 10 NaN
1294 707995814724026368 2016-03-10 18:25:30 Twitter for iPhone This is Farfle. He lost his back legs during the Battle of Gettysburg. Goes 0-60 in 4.3 seconds (damn) 12/10 hero af https://t.co/NiQQWzIzzq https://twitter.com/dog_rates/status/707995814724026368/photo/1 12 10 Farfle
1296 707969809498152960 2016-03-10 16:42:10 Twitter for iPhone Meet Rufus. He's a Honeysuckle Firefox. Curly af. Badass tie. About to go on his first date ever 11/10 good luck pup https://t.co/dGoTWNfIsm https://twitter.com/dog_rates/status/707969809498152960/photo/1 11 10 Rufus
1297 707776935007539200 2016-03-10 03:55:45 Twitter for iPhone This is Sadie. She's a Bohemian Rhapsody. Remarkably portable. Could sneak on roller coasters with (probably). 11/10 https://t.co/DB8fyeDs8B https://twitter.com/dog_rates/status/707776935007539200/photo/1 11 10 Sadie
1298 707741517457260545 2016-03-10 01:35:01 Twitter for iPhone When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup https://t.co/0nMgoue8IR https://twitter.com/dog_rates/status/707741517457260545/photo/1 10 10 NaN
1299 707738799544082433 2016-03-10 01:24:13 Vine - Make a Scene He's doing his best. 12/10 very impressive that he got his license in the first place https://t.co/2vRmkkOLcN https://vine.co/v/hUvHKYrdb1d 12 10 NaN
1300 707693576495472641 2016-03-09 22:24:31 Twitter for iPhone This is Jiminus. He's in a tub for some reason. What a jokester. Smh 7/10 churlish af https://t.co/84L4ED9Tpi https://twitter.com/dog_rates/status/707693576495472641/photo/1 7 10 Jiminus
1301 707629649552134146 2016-03-09 18:10:30 Vine - Make a Scene We usually don't rate marshmallows but this one's having so much fun in the snow. 10/10 (vid by @kylejk24) https://t.co/NL2KwOioBh https://vine.co/v/iHhBOTl5p9z 10 10 NaN
1302 707610948723478529 2016-03-09 16:56:11 Twitter for iPhone This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 https://twitter.com/dog_rates/status/707610948723478529/photo/1 12 10 Harper
1303 707420581654872064 2016-03-09 04:19:44 Twitter for iPhone This is Keurig. He's a rare dog. Laughs like an idiot tho. Head is basically a weapon. Poorly maintained goatee 4/10 https://t.co/xOrUyj7K30 https://twitter.com/dog_rates/status/707420581654872064/photo/1 4 10 Keurig
1304 707411934438625280 2016-03-09 03:45:22 Twitter for iPhone "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 https://t.co/uQsCJ8pf51 https://twitter.com/dog_rates/status/707411934438625280/photo/1 11 10 NaN pupper pupper
1305 707387676719185920 2016-03-09 02:08:59 Twitter for iPhone Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E https://twitter.com/dog_rates/status/707387676719185920/photo/1 10 10 Clarkus
1306 707377100785885184 2016-03-09 01:26:57 Twitter for iPhone This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet https://t.co/iKThgKnW1j https://twitter.com/dog_rates/status/707377100785885184/photo/1,https://twitter.com/dog_rates/status/707377100785885184/photo/1 9 10 NaN
1307 707315916783140866 2016-03-08 21:23:50 Twitter for iPhone This is Finnegus. He's trapped in a snow globe. Poor pupper. 10/10 would make sure no one shook it https://t.co/BjpOa52jQ4 https://twitter.com/dog_rates/status/707315916783140866/photo/1,https://twitter.com/dog_rates/status/707315916783140866/photo/1 10 10 Finnegus pupper pupper
1308 707297311098011648 2016-03-08 20:09:54 Twitter for iPhone This is Cassie. She can go from sweet to scary af in a matter of seconds. 10/10 points deducted for cats on pajamas https://t.co/B6dmZmJBdK https://twitter.com/dog_rates/status/707297311098011648/photo/1,https://twitter.com/dog_rates/status/707297311098011648/photo/1 10 10 Cassie
1309 707059547140169728 2016-03-08 04:25:07 Twitter for iPhone Say hello to Cupcake. She's an Icelandic Dippen Dot. Confused by the oddly geometric lawn pattern. 11/10 https://t.co/D7rorf4YKL https://twitter.com/dog_rates/status/707059547140169728/photo/1,https://twitter.com/dog_rates/status/707059547140169728/photo/1 11 10 Cupcake
1310 707038192327901184 2016-03-08 03:00:15 Twitter for iPhone This is Kathmandu. He sees every move you make. Probably knows Jiu-Jitsu. 10/10 mysterious af https://t.co/z0cs7E4Xjj https://twitter.com/dog_rates/status/707038192327901184/photo/1,https://twitter.com/dog_rates/status/707038192327901184/photo/1 10 10 Kathmandu
1311 707021089608753152 2016-03-08 01:52:18 Twitter for iPhone This is Tucker. He's a Dasani Episcopalian. Good lord what a tongue. 12/10 would never let go of https://t.co/gHtW5cgyy7 https://twitter.com/dog_rates/status/707021089608753152/photo/1,https://twitter.com/dog_rates/status/707021089608753152/photo/1 12 10 Tucker
1312 707014260413456384 2016-03-08 01:25:10 Twitter for iPhone This is Ellie. She requests to be carried around in a lacrosse stick at all times. 11/10 impossible to say no https://t.co/15yCmd43zU https://twitter.com/dog_rates/status/707014260413456384/photo/1 11 10 Ellie
1313 706904523814649856 2016-03-07 18:09:06 Vine - Make a Scene Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f https://vine.co/v/iXQAm5Lrgrh 13 10 NaN
1314 706901761596989440 2016-03-07 17:58:08 Twitter for iPhone This is Elliot. He's blocking the roadway. Downright rude as hell. Doesn't care that you're already late. 3/10 https://t.co/FMUxir5pYu https://twitter.com/dog_rates/status/706901761596989440/photo/1 3 10 Elliot
1315 706681918348251136 2016-03-07 03:24:33 Twitter for iPhone Say hello to Katie. She's a Mitsubishi Hufflepuff. Curly af. 12/10 I'd do terrible things to acquire such a pup https://t.co/CFPIcGcwJv https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1 12 10 Katie
1316 706644897839910912 2016-03-07 00:57:27 Twitter for iPhone Meet Shadow. She's tired of the responsibilities associated with being a dog. No longer strives to attain ball. 9/10 https://t.co/cdOkfEpjFw https://twitter.com/dog_rates/status/706644897839910912/video/1 9 10 Shadow
1317 706593038911545345 2016-03-06 21:31:22 Twitter for iPhone Here's a sneak peek of me on spring break. 10/10 so many tired pups these days https://t.co/6aJrjKfNqX https://twitter.com/dog_rates/status/706593038911545345/photo/1 10 10 NaN
1318 706538006853918722 2016-03-06 17:52:42 Twitter for iPhone This is Oliver (pronounced "Ricardo"). He's a ship captain. Controls these treacherous waters. 11/10 would sail with https://t.co/bxjO45rXKd https://twitter.com/dog_rates/status/706538006853918722/photo/1 11 10 Oliver
1319 706516534877929472 2016-03-06 16:27:23 Twitter for iPhone Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 https://t.co/KUS0xl7XIp https://twitter.com/dog_rates/status/706516534877929472/photo/1 12 10 NaN
1320 706346369204748288 2016-03-06 05:11:12 Twitter for iPhone This is Koda. She's a Beneboom Cumberwiggle. 12/10 petable as hell https://t.co/VZV6oMJmU6 https://twitter.com/dog_rates/status/706346369204748288/photo/1,https://twitter.com/dog_rates/status/706346369204748288/photo/1 12 10 Koda
1321 706310011488698368 2016-03-06 02:46:44 Twitter for iPhone Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf https://twitter.com/dog_rates/status/706310011488698368/photo/1,https://twitter.com/dog_rates/status/706310011488698368/photo/1 12 10 NaN pupper pupper
1322 706291001778950144 2016-03-06 01:31:11 Twitter for iPhone When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 https://t.co/qy33OBcexg https://twitter.com/dog_rates/status/706291001778950144/photo/1,https://twitter.com/dog_rates/status/706291001778950144/photo/1 11 10 NaN
1323 706265994973601792 2016-03-05 23:51:49 Twitter for iPhone This is Kara. She's been trying to solve that thing for 3 days. "I don't have thumbs," she said. 11/10 solid effort https://t.co/lA6a8GefrV https://twitter.com/dog_rates/status/706265994973601792/photo/1 11 10 Kara
1324 706169069255446529 2016-03-05 17:26:40 Twitter for iPhone He was doing his best. 12/10 I'll be his lawyer\nhttps://t.co/WN4C6miCzR https://twitter.com/wgnnews/status/706165920809492480 12 10 NaN
1325 706166467411222528 2016-03-05 17:16:20 Twitter for iPhone This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable https://t.co/sA7P3JSqiv https://twitter.com/dog_rates/status/706166467411222528/photo/1 7 10 Dexter
1326 706153300320784384 2016-03-05 16:24:01 Vine - Make a Scene This is Layla. She's giving you a standing ovation.13/10 just magnificent (vid by @CSBrzezinski) https://t.co/KxYXHUHUi2 https://vine.co/v/iXidJXBJ3P9 13 10 Layla
1327 705975130514706432 2016-03-05 04:36:02 Twitter for iPhone This is Adele. Her tongue flies out of her mouth at random. It's a debilitating illness. 10/10 stay strong pupper https://t.co/cfn81n3FLO https://twitter.com/dog_rates/status/705975130514706432/photo/1,https://twitter.com/dog_rates/status/705975130514706432/photo/1 10 10 Adele pupper pupper
1328 705970349788291072 2016-03-05 04:17:02 Twitter for iPhone This is Lucy. She's a Venetian Kerploof. Supposed to be navigating. Quite irresponsible. Fancy ass collar tho 12/10 https://t.co/8tjnz1L8DI https://twitter.com/dog_rates/status/705970349788291072/photo/1 12 10 Lucy
1329 705898680587526145 2016-03-04 23:32:15 Twitter for iPhone Meet Max. He's a Fallopian Cephalopuff. Eyes are magical af. Lil dandruff problem. No big deal 10/10 would still pet https://t.co/c67nUjwmFs https://twitter.com/dog_rates/status/705898680587526145/photo/1,https://twitter.com/dog_rates/status/705898680587526145/photo/1 10 10 Max
1331 705591895322394625 2016-03-04 03:13:11 Twitter for iPhone "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 https://t.co/nPTBsdm3BF https://twitter.com/dog_rates/status/705591895322394625/photo/1 11 10 NaN
1332 705475953783398401 2016-03-03 19:32:29 Twitter for iPhone Say hello to Zara. She found a sandal and couldn't be happier. 12/10 great work https://t.co/zQUuVu812n https://twitter.com/dog_rates/status/705475953783398401/photo/1,https://twitter.com/dog_rates/status/705475953783398401/photo/1 12 10 Zara
1333 705442520700944385 2016-03-03 17:19:38 Twitter for iPhone This is Cooper. He only wakes up to switch gears. 12/10 helpful af https://t.co/EEIkAGVY64 https://twitter.com/dog_rates/status/705442520700944385/photo/1 12 10 Cooper
1334 705428427625635840 2016-03-03 16:23:38 Twitter for iPhone This is Ambrose. He's an Alfalfa Ballyhoo. Draws pistol fast af. Pretty much runs the frontier. 11/10 lethal pupper https://t.co/ih6epBOxIA https://twitter.com/dog_rates/status/705428427625635840/photo/1 11 10 Ambrose pupper pupper
1335 705239209544720384 2016-03-03 03:51:44 Twitter for iPhone This is Jimothy. He lost his body during the the Third Crusade (tragic). 11/10 heroic af tho https://t.co/wnsblfu7XE https://twitter.com/dog_rates/status/705239209544720384/photo/1 11 10 Jimothy
1336 705223444686888960 2016-03-03 02:49:06 Twitter for iPhone This is Bode. He's a heavy sleeper. 9/10 https://t.co/YMkxhGWUqv https://twitter.com/dog_rates/status/705223444686888960/photo/1 9 10 Bode
1337 705102439679201280 2016-03-02 18:48:16 Twitter for iPhone This is Terrenth. He just stubbed his toe. 10/10 deep breaths Terrenth https://t.co/Pg18CDFC7Z https://twitter.com/dog_rates/status/705102439679201280/photo/1 10 10 Terrenth
1338 705066031337840642 2016-03-02 16:23:36 Twitter for iPhone This is Reese. He's a Chilean Sohcahtoa. Loves to swing. Never sure what to do with his feet. 12/10 huggable af https://t.co/VA6jnNUyuW https://twitter.com/dog_rates/status/705066031337840642/photo/1 12 10 Reese
1340 704859558691414016 2016-03-02 02:43:09 Twitter for iPhone Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu https://twitter.com/dog_rates/status/704859558691414016/photo/1 10 10 NaN pupper pupper
1341 704847917308362754 2016-03-02 01:56:53 Twitter for iPhone "Yes hi could I get a number 4 with no pickles" ...12/10 https://t.co/kQPVxqA3gq https://twitter.com/dog_rates/status/704847917308362754/photo/1 12 10 NaN
1342 704819833553219584 2016-03-02 00:05:17 Twitter for iPhone This is Chesterson. He's a Bolivian Scoop Dog. Incredibly portable. Can't bark for shit tho. 7/10 would still pet https://t.co/EatAd8JhyW https://twitter.com/dog_rates/status/704819833553219584/photo/1 7 10 Chesterson
1343 704761120771465216 2016-03-01 20:11:59 Twitter for iPhone This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://t.co/Lu0ECu5tO5 https://twitter.com/dog_rates/status/704761120771465216/photo/1,https://twitter.com/dog_rates/status/704761120771465216/photo/1 13 10 NaN pupper pupper
1344 704499785726889984 2016-03-01 02:53:32 Twitter for iPhone When you wake up from a long nap and have no idea who you are. 12/10 https://t.co/dlF93GLnDc https://twitter.com/dog_rates/status/704499785726889984/photo/1 12 10 NaN
1346 704480331685040129 2016-03-01 01:36:14 Twitter for iPhone Meet Lucia. She's a Cumulonimbus Floofmallow. Only has two legs tho (unfortunate). 11/10 would definitely still pet https://t.co/qv6qlEUCEe https://twitter.com/dog_rates/status/704480331685040129/photo/1 11 10 Lucia
1347 704364645503647744 2016-02-29 17:56:32 Twitter for iPhone Say hello to Bisquick. He's a Beneplop Cumbersnug. Even smiles when wet. 12/10 I'd steal Bisquick https://t.co/5zX5XD3i6K https://twitter.com/dog_rates/status/704364645503647744/photo/1,https://twitter.com/dog_rates/status/704364645503647744/photo/1 12 10 Bisquick
1348 704347321748819968 2016-02-29 16:47:42 Twitter for iPhone This is Ralphson. He's very confused. Wondering why he's sitting on Santa's lap in February. 10/10 stay woke pupper https://t.co/INphk4ltkZ https://twitter.com/dog_rates/status/704347321748819968/photo/1 10 10 Ralphson pupper pupper
1349 704134088924532736 2016-02-29 02:40:23 Vine - Make a Scene This sneezy pupper is just adorable af. 12/10 (vid by @gwilks1) https://t.co/h5aI0Tim4j https://vine.co/v/igW2OEwu9vg 12 10 NaN pupper pupper
1350 704113298707505153 2016-02-29 01:17:46 Twitter for iPhone Meet Stanley. He's an inverted Uzbekistani water pup. Hella exotic. Floats around all day. 8/10 I want to be Stanley https://t.co/XpYMBQ1FD8 https://twitter.com/dog_rates/status/704113298707505153/photo/1,https://twitter.com/dog_rates/status/704113298707505153/photo/1 8 10 Stanley
1351 704054845121142784 2016-02-28 21:25:30 Twitter for iPhone Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa https://twitter.com/dog_rates/status/704054845121142784/photo/1 60 50 NaN
1352 703774238772166656 2016-02-28 02:50:28 Twitter for iPhone "YOU CAN'T HANDLE THE TRUTH" both 10/10 https://t.co/ZvxdB4i9AG https://twitter.com/dog_rates/status/703774238772166656/photo/1 10 10 NaN
1353 703769065844768768 2016-02-28 02:29:55 Twitter for iPhone When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af https://t.co/QQZDCYl6zT https://twitter.com/dog_rates/status/703769065844768768/photo/1,https://twitter.com/dog_rates/status/703769065844768768/photo/1 10 10 NaN
1354 703631701117943808 2016-02-27 17:24:05 Twitter for iPhone This is Bella. Based on this picture she's at least 8ft tall (wow)! Must be rare. 11/10 would pet on tippy toes https://t.co/XTVbSRdvcp https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1 11 10 Bella
1355 703611486317502464 2016-02-27 16:03:45 Twitter for iPhone Meet Scooter. He's experiencing the pupper equivalent of dropping ur phone in a toilet 10/10 put it in some rice pup https://t.co/JSmX1FIEaW https://twitter.com/dog_rates/status/703611486317502464/photo/1 10 10 Scooter pupper pupper
1357 703407252292673536 2016-02-27 02:32:12 Twitter for iPhone This pupper doesn't understand gates. 10/10 so close https://t.co/GUbFF4o6dZ https://twitter.com/dog_rates/status/703407252292673536/photo/1 10 10 NaN pupper pupper
1358 703382836347330562 2016-02-27 00:55:11 Twitter for iPhone This is Charlie. He's a West Side Niddlewog. Mucho fluffy. 12/10 would pet so damn well https://t.co/B9dOrmnPVt https://twitter.com/dog_rates/status/703382836347330562/photo/1,https://twitter.com/dog_rates/status/703382836347330562/photo/1 12 10 Charlie
1359 703356393781329922 2016-02-26 23:10:06 Twitter for iPhone This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 https://t.co/8rc5I22bBf https://twitter.com/dog_rates/status/703356393781329922/photo/1 9 10 Socks
1360 703268521220972544 2016-02-26 17:20:56 Twitter for iPhone Happy Friday here's a sleepy pupper 12/10 https://t.co/eBcqv9SPkY https://twitter.com/dog_rates/status/703268521220972544/photo/1 12 10 NaN pupper pupper
1361 703079050210877440 2016-02-26 04:48:02 Twitter for iPhone This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW https://twitter.com/dog_rates/status/703079050210877440/photo/1,https://twitter.com/dog_rates/status/703079050210877440/photo/1 11 10 NaN
1362 703041949650034688 2016-02-26 02:20:37 Twitter for iPhone This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR https://twitter.com/dog_rates/status/703041949650034688/photo/1 10 10 NaN
1363 702932127499816960 2016-02-25 19:04:13 Twitter for iPhone This is Chip. He's an Upper West Nile Pantaloon. Extremely deadly. Will rip your throat out. 6/10 might still pet https://t.co/LUFnwzznaV https://twitter.com/dog_rates/status/702932127499816960/photo/1 6 10 Chip
1364 702899151802126337 2016-02-25 16:53:11 Vine - Make a Scene Say hello to Luna. Her tongue is malfunctioning (tragic). 12/10 please enjoy (vid by @LilyArtz) https://t.co/F9aLnADVIw https://vine.co/v/i6iIrBwnTFI 12 10 Luna
1365 702684942141153280 2016-02-25 02:42:00 Twitter for iPhone This is Lucy. She's sick of these bullshit generalizations 11/10 https://t.co/d2b5C2R0aO https://twitter.com/dog_rates/status/702684942141153280/photo/1 11 10 Lucy
1366 702671118226825216 2016-02-25 01:47:04 Twitter for iPhone Meet Rambo &amp; Kiwi. Rambo's the pup with the sharp toes &amp; rad mohawk. One stays woke while one sleeps. 10/10 for both https://t.co/MpH1Fe9LhZ https://twitter.com/dog_rates/status/702671118226825216/photo/1 10 10 Rambo
1367 702598099714314240 2016-02-24 20:56:55 Twitter for iPhone This is Sansa. She's gotten too big for her chair. Not so smol anymore. 11/10 once a pupper, always a pupper https://t.co/IpAoztle2s https://twitter.com/dog_rates/status/702598099714314240/photo/1 11 10 Sansa pupper pupper
1368 702539513671897089 2016-02-24 17:04:07 Twitter for iPhone This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1 12 10 NaN
1369 702332542343577600 2016-02-24 03:21:41 Vine - Make a Scene This is Rudy. He's going to be a star. 13/10 talented af (vid by @madalynrossi) https://t.co/Dph4FDGoMd https://vine.co/v/irlDujgwOjd 13 10 Rudy
1370 702321140488925184 2016-02-24 02:36:23 Twitter for iPhone Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1 12 10 NaN
1371 702276748847800320 2016-02-23 23:39:59 Twitter for iPhone "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 https://t.co/rSNCEiTtfI https://twitter.com/dog_rates/status/702276748847800320/photo/1 11 10 NaN
1372 702217446468493312 2016-02-23 19:44:20 Twitter for iPhone I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 https://t.co/y35Y1TJERY https://twitter.com/dog_rates/status/702217446468493312/photo/1 9 10 NaN
1373 701981390485725185 2016-02-23 04:06:20 Twitter for iPhone This is Fiji. She's a Powdered Stegafloof. Very rare. 12/10 https://t.co/fZRob6eotY https://twitter.com/dog_rates/status/701981390485725185/photo/1 12 10 Fiji
1374 701952816642965504 2016-02-23 02:12:47 Twitter for iPhone Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX https://twitter.com/dog_rates/status/701952816642965504/photo/1 11 10 Rilo
1375 701889187134500865 2016-02-22 21:59:57 Twitter for iPhone This is Bilbo. He's not emotionally prepared to enter the water. 11/10 don't struggle Bilbo https://t.co/rH9SQgZUnQ https://twitter.com/dog_rates/status/701889187134500865/photo/1 11 10 Bilbo
1376 701805642395348998 2016-02-22 16:27:58 Vine - Make a Scene Please pray for this pupper. Nothing wrong with her she just can't stop getting hit with banana peels. 11/10 https://t.co/8sdVenUAqr https://vine.co/v/ivV6Y37mH5Z 11 10 NaN pupper pupper
1377 701601587219795968 2016-02-22 02:57:08 Twitter for iPhone This is Coopson. He's a Blingin Schnitzel. Built fence himself. One ear is slightly defective. 10/10 would still pet https://t.co/MWw3pVMhJA https://twitter.com/dog_rates/status/701601587219795968/photo/1 10 10 Coopson
1378 701570477911896070 2016-02-22 00:53:31 Twitter for iPhone This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx https://twitter.com/dog_rates/status/701570477911896070/photo/1,https://twitter.com/dog_rates/status/701570477911896070/photo/1 9 10 Yoda
1379 701545186879471618 2016-02-21 23:13:01 Twitter for iPhone Meet Millie. She's practicing her dive form for Rio. It's nearly perfect. Dedicated af. 10/10 go for gold pupper https://t.co/SDVkc4m96M https://twitter.com/dog_rates/status/701545186879471618/photo/1 10 10 Millie pupper pupper
1380 701214700881756160 2016-02-21 01:19:47 Twitter for iPhone I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL https://twitter.com/dog_rates/status/701214700881756160/photo/1 12 10 NaN
1381 700890391244103680 2016-02-20 03:51:05 Twitter for iPhone This is Chet. He's dapper af. His owners want him to learn how to dance but his true passion is potato guns. 11/10 https://t.co/TBv7Qh1zxZ https://twitter.com/dog_rates/status/700890391244103680/photo/1 11 10 Chet
1382 700864154249383937 2016-02-20 02:06:50 Twitter for iPhone "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW https://twitter.com/dog_rates/status/700864154249383937/photo/1 12 10 NaN pupper pupper
1383 700847567345688576 2016-02-20 01:00:55 Twitter for iPhone Meet Crouton. He's a Galapagos Boonwiddle. Has a legendary tongue (most Boonwiddles do). Excellent stuff 10/10 https://t.co/110Eeg7KW3 https://twitter.com/dog_rates/status/700847567345688576/photo/1 10 10 Crouton
1384 700796979434098688 2016-02-19 21:39:54 Twitter for iPhone This is Daniel. He's a neat pup. Exotic af. Custom paws. Leaps unannounced. Would totally pet. 7/10 daaamn Daniel https://t.co/5XaR0kj8cr https://twitter.com/dog_rates/status/700796979434098688/photo/1 7 10 Daniel
1385 700747788515020802 2016-02-19 18:24:26 Twitter for iPhone We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU https://twitter.com/dog_rates/status/700747788515020802/photo/1 11 10 very
1386 700518061187723268 2016-02-19 03:11:35 Twitter for iPhone This is Vincent. He's the man your girl is with when she's not with you. 10/10 https://t.co/JQGMP7kzjD https://twitter.com/dog_rates/status/700518061187723268/photo/1 10 10 Vincent
1387 700505138482569216 2016-02-19 02:20:14 Twitter for iPhone This is Kaia. She's just cute as hell. 12/10 I'd kill for Kaia https://t.co/5fMdH8GFaq https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1 12 10 Kaia
1388 700462010979500032 2016-02-18 23:28:52 Twitter for iPhone This is Murphy. He's a mini golden retriever. Missing two legs (tragic). Mouth sharp. Looks rather perturbed. 6/10 https://t.co/ALO02IAKCn https://twitter.com/dog_rates/status/700462010979500032/photo/1 6 10 Murphy
1389 700167517596164096 2016-02-18 03:58:39 Twitter for iPhone This is Dotsy. She's stuck as hell. 10/10 https://t.co/A0h4lnhU4s https://twitter.com/dog_rates/status/700167517596164096/photo/1 10 10 Dotsy
1390 700151421916807169 2016-02-18 02:54:41 Twitter for iPhone If a pupper gave that to me I'd probably start shaking and faint from all the joy. 11/10 https://t.co/o9aJVPB25n https://twitter.com/dog_rates/status/700151421916807169/photo/1 11 10 NaN pupper pupper
1391 700143752053182464 2016-02-18 02:24:13 Twitter for iPhone When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https://t.co/Fbdr5orUrJ https://twitter.com/dog_rates/status/700143752053182464/photo/1 10 10 NaN pupper pupper
1392 700062718104104960 2016-02-17 21:02:13 Twitter for iPhone This is Eazy-E. He's colorful af. Must be rare. Submerged in Sprite (rad). Doesn't perform well when not wet. 6/10 https://t.co/UtFI7eUCjE https://twitter.com/dog_rates/status/700062718104104960/photo/1 6 10 Eazy
1393 700029284593901568 2016-02-17 18:49:22 Twitter for iPhone This is Coops. His ship is taking on water. Sound the alarm. Much distress. Requesting immediate assistance. 10/10 https://t.co/8Nuny4lLE3 https://twitter.com/dog_rates/status/700029284593901568/photo/1 10 10 Coops
1394 700002074055016451 2016-02-17 17:01:14 Twitter for iPhone This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1 https://twitter.com/dog_rates/status/700002074055016451/photo/1 9 10 Thumas
1395 699801817392291840 2016-02-17 03:45:29 Twitter for iPhone This is Cooper. He began to tear up when his bone was taken from him. 11/10 stay strong pupper https://t.co/qI8yvqKG02 https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1 11 10 Cooper pupper pupper
1396 699788877217865730 2016-02-17 02:54:04 Twitter for iPhone Say hello to Nala. She's a Freckled High Bruschetta. Petable af. 12/10 https://t.co/5bjrIRqByp https://twitter.com/dog_rates/status/699788877217865730/photo/1 12 10 Nala
1397 699779630832685056 2016-02-17 02:17:19 Twitter for iPhone Take all my money. 10/10 https://t.co/B28ebc5LzQ https://twitter.com/dog_rates/status/699779630832685056/photo/1,https://twitter.com/dog_rates/status/699779630832685056/photo/1 10 10 NaN
1398 699775878809702401 2016-02-17 02:02:25 Twitter for iPhone Meet Fillup. Spaghetti is his main weakness. Also pissed because he's rewarded with cat treats 11/10 it'll be ok pup https://t.co/TEHu55ZQKD https://twitter.com/dog_rates/status/699775878809702401/photo/1 11 10 Fillup
1399 699691744225525762 2016-02-16 20:28:06 Twitter for iPhone This is Dave. He's a tropical pup. Short lil legs (dachshund mix?) Excels underwater, but refuses to eat kibble 5/10 https://t.co/ZJnCxlIf62 https://twitter.com/dog_rates/status/699691744225525762/photo/1 5 10 Dave
1400 699446877801091073 2016-02-16 04:15:05 Twitter for iPhone This is Archie. He's undercover in all these pics. Not actually a bee, cow, or Hawaiian. Sneaky af. 12/10 https://t.co/9fojElzIxx https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1 12 10 Archie
1401 699434518667751424 2016-02-16 03:25:58 Twitter for iPhone I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 https://t.co/hTE2PEwGvi https://twitter.com/dog_rates/status/699434518667751424/photo/1 12 10 NaN pupper pupper
1402 699423671849451520 2016-02-16 02:42:52 Twitter for iPhone "Don't ever talk to me or my son again." ...both 10/10 https://t.co/b8ncwl6TlE https://twitter.com/dog_rates/status/699423671849451520/photo/1 10 10 NaN
1403 699413908797464576 2016-02-16 02:04:04 Twitter for iPhone Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS https://twitter.com/dog_rates/status/699413908797464576/photo/1 11 10 Miley
1404 699370870310113280 2016-02-15 23:13:03 Twitter for iPhone Say hello to Calbert. He doesn't have enough legs. Wtf Calbert. Still havin a blast tho. 11/10 would pet extra well https://t.co/iNFIHvcVur https://twitter.com/dog_rates/status/699370870310113280/photo/1 11 10 Calbert
1405 699323444782047232 2016-02-15 20:04:36 Twitter for iPhone "I'm bathing the children what do you want?" ...both 10/10 https://t.co/Rizm1LWh4z https://twitter.com/dog_rates/status/699323444782047232/photo/1 10 10 NaN
1406 699088579889332224 2016-02-15 04:31:20 Twitter for iPhone This is Charl. He's a bully. Chucks that dumbbell around like its nothing. Sharp neck. Exceptionally unfluffy. 3/10 https://t.co/VfLoDZecJ7 https://twitter.com/dog_rates/status/699088579889332224/photo/1 3 10 Charl
1407 699079609774645248 2016-02-15 03:55:41 Twitter for iPhone Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 https://t.co/A2j2StfNgL https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1 8 10 Reagan
1408 699072405256409088 2016-02-15 03:27:04 Twitter for iPhone ERMAHGERD 12/10 please enjoy https://t.co/7WrAWKdBac https://twitter.com/dog_rates/status/699072405256409088/video/1 12 10 NaN
1409 699060279947165696 2016-02-15 02:38:53 Vine - Make a Scene This is Yukon. He pukes rainbows. 12/10 magical af https://t.co/n6wND1v7il https://vine.co/v/inlmMHxtqDD 12 10 Yukon
1410 699036661657767936 2016-02-15 01:05:02 Twitter for iPhone HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all https://t.co/7u6VnZ1UFe https://twitter.com/dog_rates/status/699036661657767936/photo/1 13 10 NaN pupper pupper
1411 698989035503689728 2016-02-14 21:55:47 Twitter for iPhone This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 https://twitter.com/dog_rates/status/698989035503689728/photo/1 13 10 Oliver
1412 698953797952008193 2016-02-14 19:35:46 Twitter for iPhone Meet CeCe. She wanted to take a selfie before her first day as a lumberjack. 11/10 crushing traditional gender roles https://t.co/oW9XMYG3F4 https://twitter.com/dog_rates/status/698953797952008193/photo/1 11 10 CeCe
1413 698907974262222848 2016-02-14 16:33:40 Twitter for iPhone This dog is never sure if he's doing the right thing. 10/10 https://t.co/GXq43zFfBu https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1 10 10 NaN
1414 698710712454139905 2016-02-14 03:29:49 Twitter for iPhone This is Cuddles. He's not entirely sure how doors work. 10/10 I believe in you Cuddles https://t.co/rKjK88D05Z https://twitter.com/dog_rates/status/698710712454139905/photo/1 10 10 Cuddles
1415 698703483621523456 2016-02-14 03:01:06 Twitter for iPhone This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet https://t.co/hEH19t1eFp https://twitter.com/dog_rates/status/698703483621523456/photo/1 7 10 Rusty
1416 698635131305795584 2016-02-13 22:29:29 Twitter for iPhone Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) https://t.co/rb8nzVNh7F https://twitter.com/dog_rates/status/698635131305795584/video/1 12 10 NaN
1417 698549713696649216 2016-02-13 16:50:04 Twitter for iPhone This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude https://t.co/EPdQquc1dG https://twitter.com/dog_rates/status/698549713696649216/photo/1 9 10 Claude
1418 698355670425473025 2016-02-13 03:59:01 Twitter for iPhone This is Jessiga. She's a Tasmanian McCringleberry. Selfies make her uncomfortable. 10/10 would pet in time of need https://t.co/MrdPZz1CGk https://twitter.com/dog_rates/status/698355670425473025/photo/1 10 10 Jessiga
1419 698342080612007937 2016-02-13 03:05:01 Twitter for iPhone This is Maximus. He's training for the tetherball world championship. The grind never stops. 11/10 (vid by @Amuly21) https://t.co/VmFfWMjNkp https://twitter.com/dog_rates/status/698342080612007937/video/1 11 10 Maximus
1420 698262614669991936 2016-02-12 21:49:15 Twitter for iPhone This is Franklin. He's a yoga master. Trying to get rid of those rolls. Dedicated af. 11/10 keep it up pup https://t.co/S712MJXulD https://twitter.com/dog_rates/status/698262614669991936/photo/1 11 10 Franklin
1421 698195409219559425 2016-02-12 17:22:12 Twitter for iPhone Meet Beau &amp; Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https://t.co/GPaoH5qWEk https://twitter.com/dog_rates/status/698195409219559425/photo/1 9 10 Beau
1422 698178924120031232 2016-02-12 16:16:41 Twitter for iPhone This is Lily. She accidentally dropped all her Kohl's cash overboard. Day officially ruined. 10/10 hang in there pup https://t.co/BJbtCqGwZK https://twitter.com/dog_rates/status/698178924120031232/photo/1 10 10 Lily
1423 697995514407682048 2016-02-12 04:07:53 Twitter for iPhone "Dammit hooman quit playin I jus wanna wheat thin" 11/10 https://t.co/yAASRDPJnQ https://twitter.com/dog_rates/status/697995514407682048/photo/1 11 10 NaN
1424 697990423684476929 2016-02-12 03:47:39 Twitter for iPhone This is Doug. He's a Draconian Jabbawockee. Rad tongue. Ears are borderline legendary 11/10 would pet with a purpose https://t.co/MVvbQW88Pv https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1 11 10 Doug
1425 697943111201378304 2016-02-12 00:39:39 Twitter for iPhone This is Cassie. She goes door to door trying to find the owner of this baguette. No luck so far. 10/10 https://t.co/e8bj97CisO https://twitter.com/dog_rates/status/697943111201378304/photo/1 10 10 Cassie
1426 697881462549430272 2016-02-11 20:34:41 Twitter for iPhone This is Carter. He wakes up in the morning and pisses excellence. 10/10 best there is plain and simple https://t.co/pHktDjpFr8 https://twitter.com/dog_rates/status/697881462549430272/photo/1 10 10 Carter
1427 697630435728322560 2016-02-11 03:57:11 Vine - Make a Scene Pls make sure ur dogs have gone through some barkour training b4 they attempt stunts like this. 8/10 https://t.co/VmF35YvtqP https://vine.co/v/in7ZzHPKzWz 8 10 NaN
1428 697616773278015490 2016-02-11 03:02:54 Twitter for iPhone This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 https://t.co/Jxd5pR02Cn https://twitter.com/dog_rates/status/697616773278015490/photo/1,https://twitter.com/dog_rates/status/697616773278015490/photo/1 11 10 NaN pupper pupper
1429 697596423848730625 2016-02-11 01:42:02 Twitter for iPhone Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 https://t.co/5USjFjKI7Z https://twitter.com/dog_rates/status/697596423848730625/photo/1 11 10 NaN pupper pupper
1430 697575480820686848 2016-02-11 00:18:49 Twitter for iPhone This is Ole. He's not sure how to gravity. 8/10 https://t.co/PsqqotpBBQ https://twitter.com/dog_rates/status/697575480820686848/photo/1 8 10 Ole
1431 697516214579523584 2016-02-10 20:23:19 Vine - Make a Scene Say hello to Pherb. He does parkour. 9/10 https://t.co/LHFfUyLBZT https://vine.co/v/i1LriMBmX6W 9 10 Pherb
1432 697482927769255936 2016-02-10 18:11:03 Twitter for iPhone Meet Blipson. He's a Doowap Hufflepuff. That Ugg is his temporary home while he's struggling with unemployment 11/10 https://t.co/YKvt0J5MXr https://twitter.com/dog_rates/status/697482927769255936/photo/1 11 10 Blipson
1433 697463031882764288 2016-02-10 16:51:59 Twitter for iPhone Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ https://twitter.com/dog_rates/status/697463031882764288/photo/1 44 40 NaN
1434 697270446429966336 2016-02-10 04:06:43 Twitter for iPhone This is Bentley. He got stuck on his 3rd homework problem. Picturing the best case scenario if he drops out. 10/10 https://t.co/7rS33sCKMS https://twitter.com/dog_rates/status/697270446429966336/photo/1 10 10 Bentley
1435 697259378236399616 2016-02-10 03:22:44 Twitter for iPhone Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 https://twitter.com/dog_rates/status/697259378236399616/photo/1 8 10 getting
1436 697255105972801536 2016-02-10 03:05:46 Twitter for iPhone Meet Charlie. He likes to kiss all the big milk dogs with the rad earrings. Passionate af. 10/10 just a great guy https://t.co/Oe0XSGmfoP https://twitter.com/dog_rates/status/697255105972801536/photo/1 10 10 Charlie
1437 697242256848379904 2016-02-10 02:14:42 Twitter for iPhone This is Oakley. He has a massive tumor growing on his head. Seems benign tho. 10/10 would pet around tumor https://t.co/7GQ7BTxywN https://twitter.com/dog_rates/status/697242256848379904/photo/1 10 10 Oakley
1438 696900204696625153 2016-02-09 03:35:31 Twitter for iPhone This is Rosie. She's a Benebark Cumberpatch. Sleepy af. 12/10 would snug for days https://t.co/NKuON5Al8i https://twitter.com/dog_rates/status/696900204696625153/photo/1 12 10 Rosie
1439 696894894812565505 2016-02-09 03:14:25 Twitter for iPhone These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 https://t.co/RJvUjgGH5z https://twitter.com/dog_rates/status/696894894812565505/photo/1 9 10 NaN
1440 696886256886657024 2016-02-09 02:40:05 Twitter for iPhone Guys I found the dog from Up. 12/10 https://t.co/WqoZtX9jmJ https://twitter.com/dog_rates/status/696886256886657024/photo/1 12 10 NaN
1441 696877980375769088 2016-02-09 02:07:12 Twitter for iPhone This is Misty. She's in a predicament. Not sure what next move should be. 9/10 stay calm pupper I'm comin https://t.co/XhR7PAgcwF https://twitter.com/dog_rates/status/696877980375769088/photo/1 9 10 Misty pupper pupper
1442 696754882863349760 2016-02-08 17:58:03 Twitter for iPhone This is Reptar. He specifically asked for his skis to have four bindings. He's not happy. Quite perturbed tbh. 10/10 https://t.co/l9k7TPP7Tp https://twitter.com/dog_rates/status/696754882863349760/photo/1 10 10 Reptar
1443 696744641916489729 2016-02-08 17:17:22 Vine - Make a Scene This is Klevin. He doesn't want his family brainwashed by mainstream media. 10/10 (vid by @AshtonHose) https://t.co/ghhbMAFPW8 https://vine.co/v/i1wrljBUjAu 10 10 Klevin
1444 696713835009417216 2016-02-08 15:14:57 Twitter for iPhone This is Trevith. He's a Swiss Mountain Roadwoof. Breeze too powerful. 9/10 stay strong pupper https://t.co/6J8Ibwy1X6 https://twitter.com/dog_rates/status/696713835009417216/photo/1 9 10 Trevith pupper pupper
1445 696518437233913856 2016-02-08 02:18:30 Twitter for iPhone Oh my god 10/10 for every little hot dog pupper NaN 10 10 NaN pupper pupper
1447 696488710901260288 2016-02-08 00:20:23 Twitter for iPhone 12/10 revolutionary af https://t.co/zKzq4nIY86 https://twitter.com/dog_rates/status/696488710901260288/photo/1 12 10 NaN
1448 696405997980676096 2016-02-07 18:51:43 Twitter for iPhone This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb https://t.co/CIFLjiTFwZ https://twitter.com/dog_rates/status/696405997980676096/photo/1 7 10 Berb
1449 696100768806522880 2016-02-06 22:38:50 Vine - Make a Scene This poor pupper has been stuck in a vortex since last week. Please keep her in your thoughts. 10/10 https://t.co/7ODQWHwYDx https://vine.co/v/i1KWj0vbvA9 10 10 NaN pupper pupper
1450 695816827381944320 2016-02-06 03:50:33 Twitter for iPhone Here's a dog enjoying a sunset. 11/10 would trade lives with https://t.co/VsQdLxrv9h https://twitter.com/dog_rates/status/695816827381944320/photo/1 11 10 NaN
1451 695794761660297217 2016-02-06 02:22:53 Twitter for iPhone This is Wyatt. His throne is modeled after him. 13/10 Wyatt is a very big deal https://t.co/PccQ1CFEDd https://twitter.com/dog_rates/status/695794761660297217/photo/1 13 10 Wyatt
1453 695629776980148225 2016-02-05 15:27:17 Twitter for iPhone Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup https://t.co/NIvxgSQ9BS https://twitter.com/dog_rates/status/695629776980148225/photo/1,https://twitter.com/dog_rates/status/695629776980148225/photo/1 8 10 Calvin
1454 695446424020918272 2016-02-05 03:18:42 Twitter for iPhone We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af https://t.co/f9qlKiv39T https://twitter.com/dog_rates/status/695446424020918272/photo/1 12 10 NaN
1455 695409464418041856 2016-02-05 00:51:51 Twitter for iPhone This is Bob. He just got back from his job interview and realized his ear was inside-out the whole time. 10/10 https://t.co/lORINwFXIV https://twitter.com/dog_rates/status/695409464418041856/photo/1 10 10 Bob
1456 695314793360662529 2016-02-04 18:35:39 Twitter for iPhone This is Colin. He really likes green beans. It's tearing his family apart. 10/10 please pray for Colin https://t.co/ioFy0cmK03 https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1 10 10 Colin
1457 695095422348574720 2016-02-04 04:03:57 Twitter for iPhone This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib https://twitter.com/dog_rates/status/695095422348574720/photo/1 12 10 just pupper pupper
1458 695074328191332352 2016-02-04 02:40:08 Twitter for iPhone This is Lorenzo. He's educated af. Just graduated college. 11/10 poor pupper can't even comprehend his debt https://t.co/dH3GzcjCtQ https://twitter.com/dog_rates/status/695074328191332352/photo/1 11 10 Lorenzo pupper pupper
1459 695064344191721472 2016-02-04 02:00:27 Twitter for iPhone This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) https://t.co/uaJmNgXR2P https://twitter.com/dog_rates/status/695064344191721472/video/1 4 10 NaN
1460 695051054296211456 2016-02-04 01:07:39 Twitter for iPhone Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 https://t.co/vityMwPKKi https://twitter.com/dog_rates/status/695051054296211456/photo/1,https://twitter.com/dog_rates/status/695051054296211456/photo/1 6 10 Brian
1461 694925794720792577 2016-02-03 16:49:55 Vine - Make a Scene Please only send in dogs. This t-rex is very scary. 5/10 ...might still pet (vid by @helizabethmicha) https://t.co/Vn6w5w8TO2 https://vine.co/v/iJvUqWQ166L 5 10 NaN
1462 694905863685980160 2016-02-03 15:30:43 Twitter for iPhone This is Archie. He's a Bisquick Taj Mapaw. Too many people are touching him. It is doing him a discomfort. 10/10 https://t.co/CJJpjTMzPQ https://twitter.com/dog_rates/status/694905863685980160/photo/1 10 10 Archie
1463 694669722378485760 2016-02-02 23:52:22 Twitter for iPhone This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://t.co/9mb0P2rjk2 https://twitter.com/dog_rates/status/694669722378485760/photo/1,https://twitter.com/dog_rates/status/694669722378485760/photo/1 12 10 Phil
1465 694352839993344000 2016-02-02 02:53:12 Twitter for iPhone Meet Oliviér. He takes killer selfies. Has a dog of his own. It leaps at random &amp; can't bark for shit. 10/10 &amp; 5/10 https://t.co/6NgsQJuSBJ https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1 10 10 Oliviér
1466 694342028726001664 2016-02-02 02:10:14 Vine - Make a Scene It's okay pup. This happens every time I listen to @adele also. 11/10 (vid by @_larirutschmann) https://t.co/oCImpQuoRb https://vine.co/v/iJWKejYdLlh 11 10 NaN
1467 694329668942569472 2016-02-02 01:21:07 Twitter for iPhone Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper https://t.co/oToIkYnEGn https://twitter.com/dog_rates/status/694329668942569472/photo/1 9 10 Grady pupper pupper
1468 694206574471057408 2016-02-01 17:11:59 Twitter for iPhone "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 https://t.co/Sd4qAdSRqI https://twitter.com/dog_rates/status/694206574471057408/photo/1 10 10 NaN
1469 694183373896572928 2016-02-01 15:39:48 Twitter for iPhone This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD https://twitter.com/dog_rates/status/694183373896572928/photo/1,https://twitter.com/dog_rates/status/694183373896572928/photo/1 9 10 Lola
1470 694001791655137281 2016-02-01 03:38:15 Twitter for iPhone This is Chester. He's a Benefloof Cumberbark. Fabulous ears. Nifty shirt. Was probably on sale. Nice hardwood. 11/10 https://t.co/YoII7tWXMT https://twitter.com/dog_rates/status/694001791655137281/photo/1,https://twitter.com/dog_rates/status/694001791655137281/photo/1 11 10 Chester
1471 693993230313091072 2016-02-01 03:04:14 Vine - Make a Scene These lil fellas are the best of friends. 12/10 for both. 1 like = 1 friend (vid by @CassieBrookee15) https://t.co/gzRghPC61H https://vine.co/v/i5ETazP5hrm 12 10 NaN
1472 693942351086120961 2016-01-31 23:42:03 Twitter for iPhone This is Kobe. He's a Speckled Rorschach. Requests that someone holds his hand during car rides. 10/10 sick interior https://t.co/LCA6Fr3X2M https://twitter.com/dog_rates/status/693942351086120961/photo/1 10 10 Kobe
1473 693647888581312512 2016-01-31 04:11:58 Twitter for iPhone What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 https://t.co/LSTAwTdTaw https://twitter.com/dog_rates/status/693647888581312512/photo/1 7 10 NaN
1475 693642232151285760 2016-01-31 03:49:30 Twitter for iPhone Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly https://t.co/6BS9XEip9a https://twitter.com/dog_rates/status/693642232151285760/photo/1 9 10 Freddery
1476 693629975228977152 2016-01-31 03:00:47 Twitter for iPhone This pupper is afraid of its own feet. 12/10 would comfort https://t.co/Tn9Mp0oPoJ https://twitter.com/dog_rates/status/693629975228977152/photo/1,https://twitter.com/dog_rates/status/693629975228977152/photo/1 12 10 NaN pupper pupper
1477 693622659251335168 2016-01-31 02:31:43 Twitter for iPhone When you keepin the popcorn bucket in your lap and she reach for some... 10/10 https://t.co/a1IrjaID3X https://twitter.com/dog_rates/status/693622659251335168/photo/1 10 10 NaN
1478 693590843962331137 2016-01-31 00:25:18 Twitter for iPhone Meet Phil. He's big af. Currently destroying this nice family home. Completely uncalled for. 3/10 not a good pupper https://t.co/fShNNhBWYx https://twitter.com/dog_rates/status/693590843962331137/photo/1 3 10 Phil pupper pupper
1480 693486665285931008 2016-01-30 17:31:20 Twitter for iPhone This is Lincoln. He doesn't understand his new jacket. 11/10 please enjoy (vid by @GraceIsTheName8) https://t.co/S6cQsIoX27 https://twitter.com/dog_rates/status/693486665285931008/video/1 11 10 Lincoln
1481 693280720173801472 2016-01-30 03:52:58 Twitter for iPhone This is Sadie and her 2 pups Shebang &amp; Ruffalo. Sadie says single parenting is challenging but rewarding. All 10/10 https://t.co/UzbhwXcLne https://twitter.com/dog_rates/status/693280720173801472/photo/1 10 10 Sadie
1482 693267061318012928 2016-01-30 02:58:42 Vine - Make a Scene This is Oscar. He can wave. Friendly af. 12/10 would totally wave back (IG: Oscar.is.bear) https://t.co/waN6EW0wfM https://vine.co/v/i5n2irFUYWv 12 10 Oscar
1483 693262851218264065 2016-01-30 02:41:58 Twitter for iPhone I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 https://t.co/DYUsHtL2aR https://twitter.com/dog_rates/status/693262851218264065/photo/1 11 10 NaN pupper pupper
1484 693231807727280129 2016-01-30 00:38:37 Twitter for iPhone This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh https://t.co/bpZsGMqVVP https://twitter.com/dog_rates/status/693231807727280129/photo/1 9 10 Bodie
1485 693155686491000832 2016-01-29 19:36:08 Twitter for iPhone This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1 12 10 Dunkin
1486 693109034023534592 2016-01-29 16:30:45 Twitter for iPhone "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) https://t.co/NY3cPAZAIM https://twitter.com/dog_rates/status/693109034023534592/video/1 11 10 NaN
1487 693095443459342336 2016-01-29 15:36:45 Twitter for iPhone This is Milo. He doesn't understand your fancy human gestures. Will lick instead. 10/10 can't faze this pupper https://t.co/OhodPIDOpW https://twitter.com/dog_rates/status/693095443459342336/photo/1 10 10 Milo pupper pupper
1488 692919143163629568 2016-01-29 03:56:12 Twitter for iPhone Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 https://t.co/TMpDHHGspy https://twitter.com/dog_rates/status/692919143163629568/photo/1 9 10 NaN
1489 692905862751522816 2016-01-29 03:03:25 Twitter for iPhone This is Wally. He's being abducted by aliens. 10/10 poor pupper https://t.co/EiF659Bgjn https://twitter.com/dog_rates/status/692905862751522816/photo/1 10 10 Wally pupper pupper
1490 692901601640583168 2016-01-29 02:46:29 Twitter for iPhone "Fuck the system" 10/10 https://t.co/N0OADmCnVV https://twitter.com/dog_rates/status/692901601640583168/photo/1 10 10 NaN
1491 692894228850999298 2016-01-29 02:17:12 Twitter for iPhone Meet Tupawc. He's actually a Christian rapper. Doesn't even understand the concept of dollar signs. 10/10 great guy https://t.co/mCqgtqLDCW https://twitter.com/dog_rates/status/692894228850999298/photo/1 10 10 Tupawc
1492 692828166163931137 2016-01-28 21:54:41 Twitter for iPhone This pupper just descended from heaven. 12/10 can probably fly https://t.co/X6X9wM7NuS https://twitter.com/dog_rates/status/692828166163931137/photo/1 12 10 NaN pupper pupper
1493 692752401762250755 2016-01-28 16:53:37 Twitter for iPhone "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 https://t.co/kYWcXbluUu https://twitter.com/dog_rates/status/692752401762250755/photo/1 13 10 NaN pupper pupper
1494 692568918515392513 2016-01-28 04:44:32 Twitter for iPhone This is Chester. He's been guarding this pumpkin since October. Dedicated af. Hat is nifty as hell. 12/10 would snug https://t.co/CFMjsn3P6B https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1 12 10 Chester
1495 692535307825213440 2016-01-28 02:30:58 Twitter for iPhone This is Amber. She's a Fetty Woof. 10/10 would pet in a heartbeat https://t.co/Dt360V2MYI https://twitter.com/dog_rates/status/692535307825213440/photo/1 10 10 Amber
1496 692530551048294401 2016-01-28 02:12:04 Twitter for iPhone Say hello to Cody. He's been to like 80 countries and is way more cultured than you. He wanted me to say that. 10/10 https://t.co/Iv3flDTpXu https://twitter.com/dog_rates/status/692530551048294401/photo/1 10 10 Cody
1498 692417313023332352 2016-01-27 18:42:06 Twitter for iPhone Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https://t.co/VGaIMktX10 https://twitter.com/dog_rates/status/692417313023332352/photo/1 7 10 Herschel pupper pupper
1499 692187005137076224 2016-01-27 03:26:56 Twitter for iPhone This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1 12 10 NaN
1500 692158366030913536 2016-01-27 01:33:08 Twitter for iPhone This is Edgar. He's a Sassafras Puggleflash. Nothing satisfies him. Not since the war. 10/10 cheer up pup https://t.co/1NgMb9BTWB https://twitter.com/dog_rates/status/692158366030913536/photo/1 10 10 Edgar
1502 692041934689402880 2016-01-26 17:50:29 Vine - Make a Scene This is Teddy. His head is too heavy. 13/10 (vid by @jooanrim) https://t.co/sRUpRpGZ3y https://vine.co/v/iiI3wmqXYmA 13 10 Teddy
1503 692017291282812928 2016-01-26 16:12:33 Twitter for iPhone This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 https://t.co/BE4ahQ0IO2 https://twitter.com/dog_rates/status/692017291282812928/photo/1 9 10 Kingsley
1504 691820333922455552 2016-01-26 03:09:55 Twitter for iPhone This is Brockly. He's an uber driver. Falls asleep at the wheel often. Irresponsible af 8/10 would totally still pet https://t.co/fn1oUlS69Z https://twitter.com/dog_rates/status/691820333922455552/photo/1 8 10 Brockly
1505 691793053716221953 2016-01-26 01:21:31 Vine - Make a Scene We usually don't rate penguins but this one is in need of a confidence boost after that slide. 10/10 https://t.co/qnMJHBxPuo https://vine.co/v/OTTVAKw6YlW 10 10 NaN
1506 691756958957883396 2016-01-25 22:58:05 Twitter for iPhone THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 https://t.co/frGWV7IP6J https://twitter.com/dog_rates/status/691756958957883396/photo/1 10 10 NaN
1507 691675652215414786 2016-01-25 17:35:00 Twitter for iPhone This is Richie and Plip. They are the best of pals. Do everything together. 10/10 for both https://t.co/KMdwNgONkV https://twitter.com/dog_rates/status/691675652215414786/photo/1 10 10 Richie
1508 691483041324204033 2016-01-25 04:49:38 Twitter for iPhone When bae says they can't go out but you see them with someone else that same night. 5/10 &amp; 10/10 for heartbroken pup https://t.co/aenk0KpoWM https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1 5 10 NaN
1509 691459709405118465 2016-01-25 03:16:56 Twitter for iPhone Say hello to Leo. He's a Fallopian Puffalope. Precious af. 12/10 would cuddle https://t.co/LZEi0DpRsH https://twitter.com/dog_rates/status/691459709405118465/photo/1,https://twitter.com/dog_rates/status/691459709405118465/photo/1 12 10 Leo
1510 691444869282295808 2016-01-25 02:17:57 Twitter for iPhone This is Bailey. She likes flowers. 12/10 https://t.co/YBENhr24FV https://twitter.com/dog_rates/status/691444869282295808/photo/1,https://twitter.com/dog_rates/status/691444869282295808/photo/1 12 10 Bailey
1511 691416866452082688 2016-01-25 00:26:41 Twitter for iPhone I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k https://twitter.com/dog_rates/status/691416866452082688/photo/1 13 10 NaN
1512 691321916024623104 2016-01-24 18:09:23 Twitter for iPhone This is Molly. She's a Peruvian Niddlewog. Loves her new hat. 11/10 would totally pet https://t.co/g4fiS8A9Ab https://twitter.com/dog_rates/status/691321916024623104/photo/1 11 10 Molly
1513 691096613310316544 2016-01-24 03:14:07 Twitter for iPhone Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both https://t.co/fUacc13OrW https://twitter.com/dog_rates/status/691096613310316544/photo/1 11 10 NaN
1514 691090071332753408 2016-01-24 02:48:07 Twitter for iPhone Happy Saturday here's a dog in a mailbox. 12/10 https://t.co/MM7tb4HpEY https://twitter.com/dog_rates/status/691090071332753408/photo/1 12 10 NaN
1515 690989312272396288 2016-01-23 20:07:44 Vine - Make a Scene We've got a doggy down. Requesting backup. 12/10 for both. Please enjoy https://t.co/pmarb2dG0e https://vine.co/v/iOZKZEU2nHq 12 10 NaN
1516 690959652130045952 2016-01-23 18:09:53 Twitter for iPhone This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers https://t.co/DgXYBDMM3E https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1 11 10 NaN
1517 690938899477221376 2016-01-23 16:47:25 Twitter for iPhone She thought the sunset was pretty, but I thought she was prettier. 10/10 https://t.co/HSL3mnP5NX https://twitter.com/dog_rates/status/690938899477221376/photo/1 10 10 NaN
1518 690932576555528194 2016-01-23 16:22:17 Twitter for iPhone This is Buddy. He's testing out the water. Such caution. Much reserve. 12/10 https://t.co/FQZGSQIQLS https://twitter.com/dog_rates/status/690932576555528194/photo/1 12 10 Buddy
1519 690735892932222976 2016-01-23 03:20:44 Twitter for iPhone Say hello to Peaches. She's a Dingleberry Zanderfloof. 13/10 would caress lots https://t.co/YrhkrTsoTt https://twitter.com/dog_rates/status/690735892932222976/photo/1,https://twitter.com/dog_rates/status/690735892932222976/photo/1 13 10 Peaches
1520 690728923253055490 2016-01-23 02:53:03 Twitter for iPhone This is Vinscent. He was just questioned about his recent credit card spending. 8/10 https://t.co/qOD4G19A2u https://twitter.com/dog_rates/status/690728923253055490/photo/1 8 10 Vinscent
1521 690690673629138944 2016-01-23 00:21:03 Twitter for iPhone This is Cedrick. He's a spookster. Did me a discomfort. 10/10 would pet with a purpose https://t.co/yS7T4gxKod https://twitter.com/dog_rates/status/690690673629138944/photo/1 10 10 Cedrick
1522 690649993829576704 2016-01-22 21:39:24 Twitter for iPhone This is Hazel. She's a gymnast. Training hard for Rio. 11/10 focused af https://t.co/CneG2ZbxHP https://twitter.com/dog_rates/status/690649993829576704/photo/1 11 10 Hazel
1524 690597161306841088 2016-01-22 18:09:28 Twitter for iPhone This is Lolo. She's America af. Behind in science &amp; math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA https://twitter.com/dog_rates/status/690597161306841088/photo/1 11 10 Lolo
1525 690400367696297985 2016-01-22 05:07:29 Twitter for iPhone This is Eriq. His friend just reminded him of last year's super bowl. Not cool friend\n10/10 for Eriq\n6/10 for friend https://t.co/PlEXTofdpf https://twitter.com/dog_rates/status/690400367696297985/photo/1 10 10 Eriq
1526 690374419777196032 2016-01-22 03:24:22 Twitter for iPhone This is Phred. He's an Albanian Flepperkush. Tongue is rather impressive if I'm honest. Perhaps even legendary 11/10 https://t.co/VpfFCKE28C https://twitter.com/dog_rates/status/690374419777196032/photo/1 11 10 Phred
1527 690360449368465409 2016-01-22 02:28:52 Twitter for iPhone Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx https://twitter.com/dog_rates/status/690360449368465409/photo/1 9 10 NaN
1528 690348396616552449 2016-01-22 01:40:58 Vine - Make a Scene This is Oddie. He's trying to communicate. 12/10 very solid effort (vid by @kaleseyy) https://t.co/JjxriLqZOL https://vine.co/v/iejBWerY9X2 12 10 Oddie
1529 690248561355657216 2016-01-21 19:04:15 Twitter for iPhone This is Maxwell. That's his moped. He rents it out for others to use as long as he can come also. 11/10 great dog https://t.co/IF5kKaO945 https://twitter.com/dog_rates/status/690248561355657216/photo/1 11 10 Maxwell
1530 690021994562220032 2016-01-21 04:03:58 Twitter for iPhone Say hello to Geoff (pronounced "Kyle"). He accidentally opened the front facing camera. 10/10 https://t.co/TmlwQWnmRC https://twitter.com/dog_rates/status/690021994562220032/photo/1 10 10 Geoff
1531 690015576308211712 2016-01-21 03:38:27 Twitter for iPhone This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho https://t.co/03XlvS8izg https://twitter.com/dog_rates/status/690015576308211712/photo/1,https://twitter.com/dog_rates/status/690015576308211712/photo/1 12 10 NaN pupper pupper
1532 690005060500217858 2016-01-21 02:56:40 Twitter for iPhone "I'm the only one that ever does anything in this household" 10/10 https://t.co/V8HcVIh4jt https://twitter.com/dog_rates/status/690005060500217858/photo/1 10 10 NaN
1533 689999384604450816 2016-01-21 02:34:07 Twitter for iPhone This is Covach. He's trying to melt the snow. 10/10 we all believe in you buddy https://t.co/fgMaP2zDMt https://twitter.com/dog_rates/status/689999384604450816/photo/1 10 10 Covach
1534 689993469801164801 2016-01-21 02:10:37 Vine - Make a Scene Here we are witnessing a rare High Stepping Alaskan Floofer. 12/10 dangerously petable (vid by @TheMrsNux) https://t.co/K4s9IJh2jm https://vine.co/v/ienexVMZgi5 12 10 NaN floofer floofer
1535 689977555533848577 2016-01-21 01:07:23 Twitter for iPhone Happy Wednesday here's a pup wearing a beret. 12/10 please enjoy https://t.co/MXedEzSHIf https://twitter.com/dog_rates/status/689977555533848577/photo/1 12 10 NaN
1536 689905486972461056 2016-01-20 20:21:00 Twitter for iPhone Say hello to Gizmo. He's quite the pupper. Confused by bed, but agile af. Can barely catch on camera. 11/10 so quick https://t.co/IE4ZblyZRY https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1 11 10 Gizmo pupper pupper
1537 689877686181715968 2016-01-20 18:30:32 Twitter for iPhone This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working https://t.co/5iH08ltkoe https://twitter.com/dog_rates/status/689877686181715968/photo/1 9 10 Durg
1538 689835978131935233 2016-01-20 15:44:48 Twitter for iPhone Meet Fynn &amp; Taco. Fynn is an all-powerful leaf lord and Taco is in the wrong place at the wrong time. 11/10 &amp; 10/10 https://t.co/MuqHPvtL8c https://twitter.com/dog_rates/status/689835978131935233/photo/1 11 10 Fynn
1539 689661964914655233 2016-01-20 04:13:20 Twitter for iPhone Meet Luca. He's a Butternut Scooperfloof. Glorious tongue. 12/10 would pet really well https://t.co/VcxZQPNZaV https://twitter.com/dog_rates/status/689661964914655233/photo/1 12 10 Luca
1540 689659372465688576 2016-01-20 04:03:02 Twitter for iPhone This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky https://t.co/XtDkrsdEfF https://twitter.com/dog_rates/status/689659372465688576/photo/1 8 10 Ricky
1541 689623661272240129 2016-01-20 01:41:08 Twitter for iPhone This is Lucy. She's terrified of the stuffed billed dog. 10/10 stay strong pupper https://t.co/QnvSjjyh7n https://twitter.com/dog_rates/status/689623661272240129/photo/1,https://twitter.com/dog_rates/status/689623661272240129/photo/1 10 10 Lucy pupper pupper
1542 689599056876867584 2016-01-20 00:03:21 Twitter for iPhone Here we see 33 dogs posing for a picture. All get 11/10 for superb cooperation https://t.co/TRAri5iHzd https://twitter.com/dog_rates/status/689599056876867584/photo/1 11 10 NaN
1543 689557536375177216 2016-01-19 21:18:22 Twitter for iPhone Downright majestic af 12/10 https://t.co/WFh2FEbYzj https://twitter.com/dog_rates/status/689557536375177216/photo/1 12 10 NaN
1544 689517482558820352 2016-01-19 18:39:13 Twitter for iPhone This is Carl. He just wants to make sure you're having a good day. 12/10 just a swell pup https://t.co/Wk3XCnmDvm https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1 12 10 Carl
1545 689289219123089408 2016-01-19 03:32:10 Twitter for iPhone Someone sent me this without any context and every aspect of it is spectacular. 13/10 please enjoy https://t.co/Rxrd4hPmp4 https://twitter.com/dog_rates/status/689289219123089408/video/1 13 10 NaN
1546 689283819090870273 2016-01-19 03:10:43 Twitter for iPhone Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff https://t.co/V62rIva61J https://twitter.com/dog_rates/status/689283819090870273/photo/1 9 10 Chipson
1547 689280876073582592 2016-01-19 02:59:01 Twitter for iPhone This is Herald. He wants you to know he could steal your girl at any moment. 10/10 https://t.co/JR7hLnlgeS https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1 10 10 Herald
1548 689275259254616065 2016-01-19 02:36:42 Twitter for iPhone Meet Lucky. He was showing his friends an extreme pogo stick trick when he completely lost control. 10/10 still rad https://t.co/K55XrIoePl https://twitter.com/dog_rates/status/689275259254616065/photo/1 10 10 Lucky
1549 689255633275777024 2016-01-19 01:18:43 Vine - Make a Scene This is Ferg. He swallowed a chainsaw. 1 like = 1 prayer 10/10 remain calm Ferg (vid by @calebturer) https://t.co/gOH51Y8Yh1 https://vine.co/v/iOL792n5hz2 10 10 Ferg
1550 689154315265683456 2016-01-18 18:36:07 Twitter for iPhone We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath https://t.co/o47yitCn9N https://twitter.com/dog_rates/status/689154315265683456/photo/1 9 10 NaN
1551 689143371370250240 2016-01-18 17:52:38 Twitter for iPhone Meet Trip. He likes wearing costumes that aren't consistent with the season to screw with people 10/10 tricky pupper https://t.co/40w7TI5Axv https://twitter.com/dog_rates/status/689143371370250240/photo/1 10 10 Trip pupper pupper
1552 688916208532455424 2016-01-18 02:49:58 Twitter for iPhone This pupper just wants to say hello. 11/10 would knock down fence for https://t.co/A8X8fwS78x https://twitter.com/dog_rates/status/688916208532455424/photo/1,https://twitter.com/dog_rates/status/688916208532455424/photo/1 11 10 NaN pupper pupper
1553 688908934925697024 2016-01-18 02:21:04 Twitter for iPhone Meet Clarence. He does parkour. 8/10 very talented dog https://t.co/WpSFZm7RPH https://twitter.com/dog_rates/status/688908934925697024/photo/1 8 10 Clarence
1554 688898160958271489 2016-01-18 01:38:15 Twitter for iPhone When you have a ton of work to do but then remember you have tomorrow off. 10/10 https://t.co/MfEaMUFYTx https://twitter.com/dog_rates/status/688898160958271489/photo/1,https://twitter.com/dog_rates/status/688898160958271489/photo/1 10 10 NaN
1555 688894073864884227 2016-01-18 01:22:00 Twitter for iPhone This is Hamrick. He's covered in corn flakes. Silly pupper. Looks congested. 7/10 considerably petable https://t.co/ROPZcAMQKI https://twitter.com/dog_rates/status/688894073864884227/photo/1 7 10 Hamrick pupper pupper
1556 688828561667567616 2016-01-17 21:01:41 Twitter for iPhone Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 https://t.co/dfCCK3tWfr https://twitter.com/dog_rates/status/688828561667567616/photo/1 9 10 Brad
1557 688804835492233216 2016-01-17 19:27:24 Twitter for iPhone When you stumble but recover quickly cause your crush is watching. 12/10 https://t.co/PMeq6IedU7 https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1 12 10 NaN
1558 688789766343622656 2016-01-17 18:27:32 Twitter for iPhone Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly https://t.co/2TWxg0rgyG https://twitter.com/dog_rates/status/688789766343622656/photo/1 8 10 Pubert
1559 688547210804498433 2016-01-17 02:23:42 Twitter for iPhone This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 https://t.co/7ycWCUrjmZ https://twitter.com/dog_rates/status/688547210804498433/photo/1 9 10 Frönq
1560 688519176466644993 2016-01-17 00:32:18 Twitter for iPhone This pupper is sprouting a flower out of her head. 12/10 revolutionary af https://t.co/glmvQBRjv4 https://twitter.com/dog_rates/status/688519176466644993/photo/1 12 10 NaN pupper pupper
1561 688385280030670848 2016-01-16 15:40:14 Twitter for iPhone This is Louis. He's takes top-notch selfies. 12/10 would snapchat with https://t.co/vz2DukO0th https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1 12 10 Louis
1562 688211956440801280 2016-01-16 04:11:31 Twitter for iPhone This is Derby. He's a superstar. 13/10 (vid by @NBohlmann) https://t.co/o4Nfc8WoAO https://twitter.com/dog_rates/status/688211956440801280/video/1 13 10 Derby
1563 688179443353796608 2016-01-16 02:02:19 Twitter for iPhone This is Lizzie. She's about to fist bump the large ridable maned pupper. She's very excited. 10/10 for both dogs https://t.co/mFhvtX36om https://twitter.com/dog_rates/status/688179443353796608/photo/1 10 10 Lizzie pupper pupper
1564 688116655151435777 2016-01-15 21:52:49 Twitter for iPhone Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 https://t.co/YdLytdZOqv https://twitter.com/dog_rates/status/688116655151435777/photo/1 10 10 NaN
1565 688064179421470721 2016-01-15 18:24:18 Twitter for iPhone This is Kilo. He's a Pouncing Brioche. Really likes snow. 11/10 https://t.co/GS76SfkraY https://twitter.com/dog_rates/status/688064179421470721/photo/1 11 10 Kilo
1566 687841446767013888 2016-01-15 03:39:15 Vine - Make a Scene 13/10 I can't stop watching this (vid by @k8lynwright) https://t.co/nZhhMRr5Hp https://vine.co/v/iOWwUPH1hrw 13 10 NaN
1567 687826841265172480 2016-01-15 02:41:12 Twitter for iPhone This is Louis. He's a rollercoaster of emotions. Incalculably fluffy. 12/10 would pet firmly https://t.co/17RGvOZO9P https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1 12 10 Louis
1568 687818504314159109 2016-01-15 02:08:05 Twitter for iPhone With great pupper comes great responsibility. 12/10 https://t.co/hK6xB042EP https://twitter.com/dog_rates/status/687818504314159109/photo/1 12 10 NaN pupper pupper
1569 687807801670897665 2016-01-15 01:25:33 Twitter for iPhone Meet Trooper &amp; Maya. Trooper protects Maya from bad things like dognappers and Comcast. So touching. 11/10 for both https://t.co/c98k1IoZKy https://twitter.com/dog_rates/status/687807801670897665/photo/1 11 10 Trooper
1570 687732144991551489 2016-01-14 20:24:55 Vine - Make a Scene This is Ember. That's the q-tip she owes money to. 11/10 pay up pup. (vid by @leanda_h) https://t.co/kGRcRjRJRl https://vine.co/v/iOuMphL5DBY 11 10 Ember
1571 687704180304273409 2016-01-14 18:33:48 Twitter for iPhone Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt https://twitter.com/dog_rates/status/687704180304273409/photo/1 9 10 Blakely pupper pupper
1572 687664829264453632 2016-01-14 15:57:26 Twitter for iPhone Meet Opal. He's a Belgian Dijon Poofster. Upset because his hood makes him look like blond Justin Timberlake. 11/10 https://t.co/IAt3jRZ5ez https://twitter.com/dog_rates/status/687664829264453632/photo/1 11 10 Opal
1573 687494652870668288 2016-01-14 04:41:12 Twitter for iPhone This is Marq. He stole this car. 7/10 wtf Marq? https://t.co/MHScqo5l8c https://twitter.com/dog_rates/status/687494652870668288/photo/1 7 10 Marq
1574 687480748861947905 2016-01-14 03:45:57 Twitter for iPhone Another magnificent photo. 12/10 https://t.co/X5w387K5jr https://twitter.com/dog_rates/status/687480748861947905/photo/1 12 10 NaN
1575 687476254459715584 2016-01-14 03:28:06 Twitter for iPhone This is Curtis. He's a fluffball. 11/10 would snug this pupper https://t.co/1DzInODwrj https://twitter.com/dog_rates/status/687476254459715584/photo/1 11 10 Curtis pupper pupper
1576 687460506001633280 2016-01-14 02:25:31 Twitter for iPhone This is Kramer. He's a Picasso Tortellini. Tie couldn't be more accurate. Confident af. Runs his own business. 10/10 https://t.co/jIcVW0xxmH https://twitter.com/dog_rates/status/687460506001633280/photo/1 10 10 Kramer
1577 687399393394311168 2016-01-13 22:22:41 Vine - Make a Scene This is Barry. He's very fast. I hope he finds what he's looking for. 10/10 (vid by @KeeganWolfe33) https://t.co/nTAsyvbIiO https://vine.co/v/iM2hLu9LU5i 10 10 Barry
1578 687317306314240000 2016-01-13 16:56:30 Twitter for iPhone This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https://t.co/pRp1Npucbz https://twitter.com/dog_rates/status/687317306314240000/photo/1,https://twitter.com/dog_rates/status/687317306314240000/photo/1 11 10 Tyrone
1579 687312378585812992 2016-01-13 16:36:55 Twitter for iPhone "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper https://t.co/yzGR9xjE9Q https://twitter.com/dog_rates/status/687312378585812992/photo/1 7 10 NaN pupper pupper
1580 687127927494963200 2016-01-13 04:23:58 Twitter for iPhone Meet Gordon. He's an asshole. 9/10 would still pet https://t.co/a34N7QwKbb https://twitter.com/dog_rates/status/687127927494963200/photo/1 9 10 Gordon
1581 687124485711986689 2016-01-13 04:10:18 Twitter for iPhone Say hello to Samson. He's a Firecracker Häagen-Dazs. 11/10 objects in mirror may be more petable than they appear https://t.co/03vR9dn7jy https://twitter.com/dog_rates/status/687124485711986689/photo/1 11 10 Samson
1582 687109925361856513 2016-01-13 03:12:26 Twitter for iPhone This is Baxter. He looks like a fun dog. Prefers action shots. 11/10 the last one is impeccable https://t.co/LHcH1yhhIb https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1 11 10 Baxter
1583 687102708889812993 2016-01-13 02:43:46 Twitter for iPhone Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all https://t.co/A88x73TwMN https://twitter.com/dog_rates/status/687102708889812993/photo/1 5 10 NaN
1584 687096057537363968 2016-01-13 02:17:20 Twitter for iPhone This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it https://t.co/D7jYj6vdwC https://twitter.com/dog_rates/status/687096057537363968/photo/1 11 10 NaN pupper pupper
1585 686947101016735744 2016-01-12 16:25:26 Twitter for iPhone This is Jackson. He was specifically told not to sleep in the fridge. Damn it Jackson. 11/10 would squeeze softly https://t.co/lJs10ZJsgj https://twitter.com/dog_rates/status/686947101016735744/photo/1 11 10 Jackson
1586 686760001961103360 2016-01-12 04:01:58 Vine - Make a Scene This pupper forgot how to walk. 12/10 happens to all of us (vid by @bbuckley96) https://t.co/KFTrkSOuu3 https://vine.co/v/iMvubwT260D 12 10 NaN pupper pupper
1587 686749460672679938 2016-01-12 03:20:05 Twitter for iPhone Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet https://t.co/nSQrhwbk1V https://twitter.com/dog_rates/status/686749460672679938/photo/1 8 10 NaN
1588 686730991906516992 2016-01-12 02:06:41 Twitter for iPhone I just love this picture. 12/10 lovely af https://t.co/Kc84eFNhYU https://twitter.com/dog_rates/status/686730991906516992/photo/1 12 10 NaN
1589 686683045143953408 2016-01-11 22:56:10 Twitter for iPhone This is Mona. She's a Yarborough Splishnsplash. Lost body during Nam. 11/10 revolutionary pupper https://t.co/pgD6h0yhgz https://twitter.com/dog_rates/status/686683045143953408/photo/1 11 10 Mona pupper pupper
1590 686618349602762752 2016-01-11 18:39:05 Twitter for iPhone This is Olivia. She just saw an adult wearing crocs. 11/10 poor pupper. No one should witness such a thing https://t.co/yJVTi1DjJc https://twitter.com/dog_rates/status/686618349602762752/photo/1 11 10 Olivia pupper pupper
1591 686606069955735556 2016-01-11 17:50:18 Twitter for iPhone Meet Horace. He was practicing his levitation, minding his own business when a rogue tennis ball spooked him. 10/10 https://t.co/tB9xYjMyZd https://twitter.com/dog_rates/status/686606069955735556/photo/1 10 10 Horace
1592 686394059078897668 2016-01-11 03:47:50 Vine - Make a Scene This pup's having a nightmare that he forgot to type a paper due first thing in the morning. 12/10 (vid by ... https://t.co/CufnbUT0pB https://vine.co/v/iMqBebnOvav 12 10 NaN
1593 686386521809772549 2016-01-11 03:17:53 Twitter for iPhone Say hello to Crimson. He's a Speckled Winnebago. Main passions are air hockey &amp; parkour. 11/10 would pet thoroughly https://t.co/J5aI7SjzDc https://twitter.com/dog_rates/status/686386521809772549/photo/1 11 10 Crimson
1594 686377065986265092 2016-01-11 02:40:19 Twitter for iPhone Meet Birf. He thinks he's gone blind. 10/10 very frightened pupper https://t.co/oDkspjNWYX https://twitter.com/dog_rates/status/686377065986265092/photo/1 10 10 Birf pupper pupper
1595 686358356425093120 2016-01-11 01:25:58 Twitter for iPhone Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups https://t.co/95JJevQOWW https://twitter.com/dog_rates/status/686358356425093120/photo/1 10 10 NaN
1596 686286779679375361 2016-01-10 20:41:33 Vine - Make a Scene When bae calls your name from across the room. 12/10 (vid by @christinemcc98) https://t.co/xolcXA6gxe https://vine.co/v/iMZx6aDbExn 12 10 NaN
1597 686050296934563840 2016-01-10 05:01:51 Twitter for iPhone This is Flávio. He's a Macedonian Poppycock. 97% floof. Jubilant af. 11/10 personally I'd pet the hell out of https://t.co/BUyX7isHRg https://twitter.com/dog_rates/status/686050296934563840/photo/1 11 10 Flávio
1599 686034024800862208 2016-01-10 03:57:12 Twitter for iPhone Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all https://t.co/oSvRDuMm1D https://twitter.com/dog_rates/status/686034024800862208/photo/1 12 10 NaN
1600 686007916130873345 2016-01-10 02:13:27 Twitter for iPhone This pupper has a magical eye. 11/10 I can't stop looking at it https://t.co/heAGpKTpPW https://twitter.com/dog_rates/status/686007916130873345/photo/1 11 10 NaN pupper pupper
1601 686003207160610816 2016-01-10 01:54:44 Twitter for iPhone This is Hammond. He's a peculiar pup. Loves long walks. Bark barely audible. Too many legs. 3/10 must be rare https://t.co/NOIiRWr5Jf https://twitter.com/dog_rates/status/686003207160610816/photo/1 3 10 Hammond
1602 685973236358713344 2016-01-09 23:55:38 Twitter for iPhone This is Lorelei. She's contemplating her existence and the eventual heat death of the universe. 11/10 very majestic https://t.co/xbUoULOIS8 https://twitter.com/dog_rates/status/685973236358713344/photo/1 11 10 Lorelei
1603 685943807276412928 2016-01-09 21:58:42 Twitter for iPhone This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn https://twitter.com/dog_rates/status/685943807276412928/video/1 8 10 NaN pupper pupper
1604 685906723014619143 2016-01-09 19:31:20 Twitter for iPhone This is Olive. He's stuck in a sleeve. 9/10 damn it Olive https://t.co/NnLjg6BgyF https://twitter.com/dog_rates/status/685906723014619143/photo/1,https://twitter.com/dog_rates/status/685906723014619143/photo/1 9 10 Olive
1606 685667379192414208 2016-01-09 03:40:16 Twitter for iPhone This is Marty. He has no idea what happened here. Never seen this stuff in his life. 9/10 very suspicious pupper https://t.co/u427woxFpJ https://twitter.com/dog_rates/status/685667379192414208/photo/1 9 10 Marty pupper pupper
1607 685663452032069632 2016-01-09 03:24:40 Twitter for iPhone Meet Brooks. He's confused by the almighty ball of tennis. 12/10 \n\n(vid by @PDolan37) https://t.co/AcVWe39nmM https://twitter.com/dog_rates/status/685663452032069632/video/1 12 10 Brooks
1608 685641971164143616 2016-01-09 01:59:19 Twitter for iPhone This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 https://t.co/jJS8qQeuNO https://twitter.com/dog_rates/status/685641971164143616/photo/1 7 10 Otis pupper pupper
1609 685547936038666240 2016-01-08 19:45:39 Twitter for iPhone Everybody needs to read this. Jack is our first 14/10. Truly heroic pupper https://t.co/3m6bNGXWnM https://twitter.com/dog_rates/status/685547936038666240/photo/1,https://twitter.com/dog_rates/status/685547936038666240/photo/1 14 10 NaN pupper pupper
1610 685532292383666176 2016-01-08 18:43:29 Twitter for iPhone For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 https://t.co/GboDG8WhJG https://twitter.com/dog_rates/status/685532292383666176/photo/1 9 10 NaN
1611 685325112850124800 2016-01-08 05:00:14 Twitter for iPhone "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw https://twitter.com/dog_rates/status/685325112850124800/photo/1 10 10 NaN
1612 685321586178670592 2016-01-08 04:46:13 Twitter for iPhone This is Rocky. He sleeps like a psychopath. 10/10 quality tongue slip https://t.co/MbgG95mUdu https://twitter.com/dog_rates/status/685321586178670592/photo/1 10 10 Rocky
1613 685315239903100929 2016-01-08 04:21:00 Twitter for iPhone I would like everyone to appreciate this pup's face as much as I do. 11/10 https://t.co/QIe7oxkSNo https://twitter.com/dog_rates/status/685315239903100929/photo/1,https://twitter.com/dog_rates/status/685315239903100929/photo/1 11 10 NaN
1614 685307451701334016 2016-01-08 03:50:03 Twitter for iPhone Say hello to Petrick. He's an Altostratus Floofer. Just had a run in with a trash bag. Groovy checkered floor. 11/10 https://t.co/rwW7z1JAOF https://twitter.com/dog_rates/status/685307451701334016/photo/1 11 10 Petrick floofer floofer
1615 685268753634967552 2016-01-08 01:16:17 Twitter for iPhone This is Hubertson. He's a Carmel Haberdashery. Enjoys long summer days on his boat. Very peaceful pupper. 10/10 https://t.co/vzCl35fKlZ https://twitter.com/dog_rates/status/685268753634967552/photo/1 10 10 Hubertson pupper pupper
1616 685198997565345792 2016-01-07 20:39:06 Twitter for iPhone This is Alfie. That is his time machine. He's very proud of it. Without him life as we know it would not exist 11/10 https://t.co/530Yfbl5xo https://twitter.com/dog_rates/status/685198997565345792/photo/1 11 10 Alfie
1617 685169283572338688 2016-01-07 18:41:01 Twitter for iPhone Meet Gerbald. He just found out he's adopted. Poor pupper. Snazzy tongue tho. 11/10 would hold close in time of need https://t.co/UfGkB9Wrud https://twitter.com/dog_rates/status/685169283572338688/photo/1 11 10 Gerbald pupper pupper
1619 684959798585110529 2016-01-07 04:48:36 Twitter for iPhone This is Jerry. He's a neat dog. No legs (tragic). Has more horns than a dog usually does. Bark is unique af. 5/10 https://t.co/85q7xlplsJ https://twitter.com/dog_rates/status/684959798585110529/photo/1 5 10 Jerry
1620 684940049151070208 2016-01-07 03:30:07 Twitter for iPhone This is Oreo. She's a photographer and a model. Living a double pupple life. 12/10 such talent much cute would pet https://t.co/zNeLxJeAoL https://twitter.com/dog_rates/status/684940049151070208/photo/1,https://twitter.com/dog_rates/status/684940049151070208/photo/1 12 10 Oreo
1621 684926975086034944 2016-01-07 02:38:10 Twitter for iPhone Meet Bruiser &amp; Charlie. They are the best of pals. Been through it all together. Both 11/10. 1 like=1 friendship https://t.co/PEXHuvSVD4 https://twitter.com/dog_rates/status/684926975086034944/photo/1 11 10 Bruiser
1622 684914660081053696 2016-01-07 01:49:14 Twitter for iPhone "Hello yes I'll just get one of each color thanks" 12/10 for all https://t.co/AMDsllQs7a https://twitter.com/dog_rates/status/684914660081053696/photo/1 12 10 NaN
1623 684902183876321280 2016-01-07 00:59:40 Twitter for iPhone This is Perry. He's an Augustus Gloopster. Very condescending. Makes up for it with the sneaky tongue slip. 11/10 https://t.co/JVvIrUmTkR https://twitter.com/dog_rates/status/684902183876321280/photo/1 11 10 Perry
1624 684880619965411328 2016-01-06 23:33:58 Twitter for iPhone Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 https://t.co/DnNweb5eTO https://twitter.com/dog_rates/status/684880619965411328/photo/1 5 10 NaN pupper pupper
1625 684830982659280897 2016-01-06 20:16:44 Vine - Make a Scene This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p https://vine.co/v/eEZXZI1rqxX 13 10 NaN pupper pupper
1626 684800227459624960 2016-01-06 18:14:31 Twitter for iPhone Meet Theodore. He's dapper as hell. Probably owns horses. Uses 'summer' as a verb. Often quotes philosophers. 11/10 https://t.co/J3Ld4fRbSy https://twitter.com/dog_rates/status/684800227459624960/photo/1 11 10 Theodore
1627 684594889858887680 2016-01-06 04:38:35 Twitter for iPhone "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 https://t.co/uhQNehTpIu https://twitter.com/dog_rates/status/684594889858887680/photo/1 10 10 NaN
1628 684588130326986752 2016-01-06 04:11:43 Vine - Make a Scene This pupper just got his first kiss. 12/10 he's so happy https://t.co/2sHwD7HztL https://vine.co/v/ihWIxntjtO7 12 10 NaN pupper pupper
1629 684567543613382656 2016-01-06 02:49:55 Twitter for iPhone This is Bobby. He doesn't give a damn about personal space. Convinced he called shotgun first. 4/10 not the best dog https://t.co/b8XW69gSaU https://twitter.com/dog_rates/status/684567543613382656/photo/1 4 10 Bobby
1631 684481074559381504 2016-01-05 21:06:19 Twitter for iPhone Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb https://twitter.com/dog_rates/status/684481074559381504/photo/1 10 10 Pippa
1632 684460069371654144 2016-01-05 19:42:51 Twitter for iPhone This is Jeph. He's a Western Sagittarius Dookmarriot. Frightened by leaf. Caught him off guard. 10/10 calm down Jeph https://t.co/bicyOV6lju https://twitter.com/dog_rates/status/684460069371654144/photo/1 10 10 Jeph
1633 684241637099323392 2016-01-05 05:14:53 Twitter for iPhone This is Obi. He got camera shy. 12/10 https://t.co/feiPiq7z94 https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1 12 10 Obi
1635 684222868335505415 2016-01-05 04:00:18 Twitter for iPhone Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 https://twitter.com/dog_rates/status/684222868335505415/photo/1 121 110 NaN
1636 684200372118904832 2016-01-05 02:30:55 Twitter for iPhone Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s https://t.co/jkCb25OWfh https://twitter.com/dog_rates/status/684200372118904832/photo/1 6 10 NaN
1637 684195085588783105 2016-01-05 02:09:54 Twitter for iPhone This is Tino. He really likes corndogs. 9/10 https://t.co/cUxGtnBfc2 https://twitter.com/dog_rates/status/684195085588783105/photo/1 9 10 Tino
1638 684188786104872960 2016-01-05 01:44:52 Twitter for iPhone "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 https://t.co/e0gbl9VFpA https://twitter.com/dog_rates/status/684188786104872960/photo/1 10 10 NaN
1639 684177701129875456 2016-01-05 01:00:50 Twitter for iPhone This is Kulet. She's very proud of the flower she picked. Loves it dearly. 10/10 now I want a flower https://t.co/myUUwqJIs7 https://twitter.com/dog_rates/status/684177701129875456/photo/1 10 10 Kulet
1640 684147889187209216 2016-01-04 23:02:22 Vine - Make a Scene This is Sweets the English Bulldog. Waves back to other bikers. 12/10 just a fantastic friendly pupper https://t.co/WYiFzuX7D4 https://vine.co/v/ib2nTOEuuOI 12 10 Sweets pupper pupper
1641 684122891630342144 2016-01-04 21:23:02 Twitter for iPhone Heartwarming scene of two pups that want nothing more than to be together. Touching af. Great tongue. Both 11/10 https://t.co/k32mSlRx0j https://twitter.com/dog_rates/status/684122891630342144/photo/1 11 10 NaN
1642 684097758874210310 2016-01-04 19:43:10 Twitter for iPhone Say hello to Lupe. This is how she sleeps. 10/10 impressive really https://t.co/Fz6iZWlk8C https://twitter.com/dog_rates/status/684097758874210310/photo/1 10 10 Lupe
1643 683857920510050305 2016-01-04 03:50:08 Twitter for iPhone Meet Sadie. She fell asleep on the beach and her friends buried her. 10/10 can't trust fellow puppers these days https://t.co/LoKVvc1xAW https://twitter.com/dog_rates/status/683857920510050305/photo/1 10 10 Sadie
1644 683852578183077888 2016-01-04 03:28:54 Twitter for iPhone Say hello to Tiger. He's a penbroke (little dog pun for ya, no need to applaud I know it was good) 10/10 good dog https://t.co/Yei0HzS3JN https://twitter.com/dog_rates/status/683852578183077888/photo/1 10 10 Tiger
1645 683849932751646720 2016-01-04 03:18:23 Twitter for iPhone This is Jiminy. He's not the brightest dog. Needs to lay off the kibble. 5/10 still petable https://t.co/omln4LOy1x https://twitter.com/dog_rates/status/683849932751646720/photo/1 5 10 Jiminy
1646 683834909291606017 2016-01-04 02:18:42 Twitter for iPhone Here we see a faulty pupper. Might need to replace batteries. Try turning off &amp; back on again. 9/10 would still pet https://t.co/O1E4AtHVxO https://twitter.com/dog_rates/status/683834909291606017/video/1 9 10 NaN pupper pupper
1647 683828599284170753 2016-01-04 01:53:37 Twitter for iPhone Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 https://t.co/Eeh3yfdglS https://twitter.com/dog_rates/status/683828599284170753/photo/1 12 10 NaN pupper pupper
1648 683773439333797890 2016-01-03 22:14:26 Twitter for iPhone This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 https://t.co/qipZbshNsR https://twitter.com/dog_rates/status/683773439333797890/photo/1 9 10 Buddy
1649 683742671509258241 2016-01-03 20:12:10 Twitter for iPhone Meet Sebastian. He's a womanizer. Romantic af. Always covered in flower petals. Also a poet. 11/10 dreamy as hell https://t.co/eoL1bCpWCg https://twitter.com/dog_rates/status/683742671509258241/photo/1 11 10 Sebastian
1650 683515932363329536 2016-01-03 05:11:12 Vine - Make a Scene HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z https://vine.co/v/ibvnzrauFuV 11 10 NaN
1651 683498322573824003 2016-01-03 04:01:13 Twitter for iPhone This is Griffin. He's desperate for both a physical and emotion connection. 11/10 I'd hug the hell out of Griffin https://t.co/ObWcOEekt0 https://twitter.com/dog_rates/status/683498322573824003/photo/1 11 10 Griffin
1652 683481228088049664 2016-01-03 02:53:17 Twitter for iPhone Meet Banjo. He's a Peppercorn Shoop Da Whoop. Nails look lethal. Skeptical of luminescent orb 11/10 stay woke pupper https://t.co/H7NZFumpKq https://twitter.com/dog_rates/status/683481228088049664/photo/1 11 10 Banjo pupper pupper
1653 683462770029932544 2016-01-03 01:39:57 Twitter for iPhone "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) https://t.co/qFD8217fUT https://twitter.com/dog_rates/status/683462770029932544/photo/1 8 10 NaN pupper pupper
1654 683449695444799489 2016-01-03 00:47:59 Twitter for iPhone I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom https://t.co/1Z7Q6svWpe https://twitter.com/dog_rates/status/683449695444799489/photo/1 10 10 NaN
1655 683391852557561860 2016-01-02 20:58:09 Twitter for iPhone Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/YHXrdUTHd6 https://twitter.com/dog_rates/status/683391852557561860/photo/1 11 10 Jack
1656 683357973142474752 2016-01-02 18:43:31 Twitter for iPhone "Have a seat, son. There are some things we need to discuss" 10/10 https://t.co/g4G5tvfTVd https://twitter.com/dog_rates/status/683357973142474752/photo/1 10 10 NaN
1657 683142553609318400 2016-01-02 04:27:31 Twitter for iPhone Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution https://t.co/hhIA3coiAJ https://twitter.com/dog_rates/status/683142553609318400/photo/1 9 10 Brandy pupper pupper
1658 683111407806746624 2016-01-02 02:23:45 Twitter for iPhone This is Larry. He thought the New Year's parties were tonight. 10/10 poor pupper. Maybe next year https://t.co/h3X0jK8MVM https://twitter.com/dog_rates/status/683111407806746624/photo/1 10 10 Larry pupper pupper
1659 683098815881154561 2016-01-02 01:33:43 Twitter for iPhone aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest https://t.co/UOPdXmUz4H https://twitter.com/dog_rates/status/683098815881154561/photo/1 12 10 NaN
1660 683078886620553216 2016-01-02 00:14:32 Twitter for iPhone Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable https://t.co/ny8mnXhGOW https://twitter.com/dog_rates/status/683078886620553216/photo/1 9 10 NaN pupper pupper
1661 683030066213818368 2016-01-01 21:00:32 Twitter for iPhone This is Lulu. She's contemplating all her unreached 2015 goals and daydreaming of a more efficient tomorrow. 10/10 https://t.co/h3ScYuz77J https://twitter.com/dog_rates/status/683030066213818368/photo/1 10 10 Lulu
1662 682962037429899265 2016-01-01 16:30:13 Twitter for iPhone This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 https://twitter.com/dog_rates/status/682962037429899265/photo/1 7 11 Darrel
1664 682788441537560576 2016-01-01 05:00:24 Twitter for iPhone Happy New Year from your fav holiday squad! 🎉 12/10 for all\n\nHere's to a pupper-filled year 🍻🐶🐶🐶 https://t.co/ZSdEj59FGf https://twitter.com/dog_rates/status/682788441537560576/photo/1 12 10 NaN pupper pupper
1665 682750546109968385 2016-01-01 02:29:49 Twitter for iPhone Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 https://t.co/85X1GHohFr https://twitter.com/dog_rates/status/682750546109968385/photo/1 9 10 Taco
1666 682697186228989953 2015-12-31 22:57:47 Twitter for iPhone NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 https://t.co/Ny4iM6FDtz https://twitter.com/dog_rates/status/682697186228989953/photo/1 12 10 NaN
1667 682662431982772225 2015-12-31 20:39:41 Twitter for iPhone Meet Joey and Izzy. Joey only has one ear that works and Izzy wants 2015 to be over already. Both great pups. 11/10s https://t.co/WgQTIQ93BB https://twitter.com/dog_rates/status/682662431982772225/photo/1 11 10 Joey
1668 682638830361513985 2015-12-31 19:05:54 Twitter for iPhone I have no words. Just a magnificent pup. 12/10 https://t.co/viwWHZgX8j https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1 12 10 NaN
1669 682429480204398592 2015-12-31 05:14:01 Twitter for iPhone I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 https://t.co/5aFw7SWyxU https://twitter.com/dog_rates/status/682429480204398592/photo/1 8 10 NaN
1670 682406705142087680 2015-12-31 03:43:31 Twitter for iPhone This is Patrick. He's a bigass pupper. 7/10 https://t.co/J9DXBFoAQe https://twitter.com/dog_rates/status/682406705142087680/photo/1 7 10 Patrick pupper pupper
1671 682393905736888321 2015-12-31 02:52:40 Twitter for iPhone This is Kreg. He's riding an invisible jet ski. 11/10 that's downright legendary https://t.co/BA5AV5dx6Y https://twitter.com/dog_rates/status/682393905736888321/photo/1 11 10 Kreg
1672 682389078323662849 2015-12-31 02:33:29 Twitter for iPhone Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 https://t.co/vBeiQq6SaZ https://twitter.com/dog_rates/status/682389078323662849/photo/1 9 10 Brody
1673 682303737705140231 2015-12-30 20:54:22 Twitter for iPhone This is Todo. He's screaming because he doesn't want to wear his sweater or a seat belt. 9/10 gotta buckle up pup https://t.co/Nm8Spw4HbD https://twitter.com/dog_rates/status/682303737705140231/photo/1 9 10 Todo
1674 682259524040966145 2015-12-30 17:58:40 Twitter for iPhone Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 https://t.co/i5TeG0KYcW https://twitter.com/dog_rates/status/682259524040966145/photo/1 9 10 Jax
1675 682242692827447297 2015-12-30 16:51:48 Twitter for iPhone This is Samson. He patrols his waters on the back of his massive shielded battle dog. 11/10 https://t.co/f8dVgDYDFf https://twitter.com/dog_rates/status/682242692827447297/photo/1 11 10 Samson
1676 682088079302213632 2015-12-30 06:37:25 Vine - Make a Scene I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE https://vine.co/v/iqMjlxULzbn 12 10 NaN
1677 682059653698686977 2015-12-30 04:44:28 Twitter for iPhone This is Tess. Her main passions are shelves and baking too many cookies. 11/10 https://t.co/IriJlVZ6m4 https://twitter.com/dog_rates/status/682059653698686977/photo/1,https://twitter.com/dog_rates/status/682059653698686977/photo/1 11 10 Tess
1678 682047327939461121 2015-12-30 03:55:29 Twitter for iPhone We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear https://t.co/fZc7MixeeT https://twitter.com/dog_rates/status/682047327939461121/photo/1 10 10 NaN
1679 682032003584274432 2015-12-30 02:54:35 Twitter for iPhone This is Ulysses. He likes holding hands and his eyes are magic. 11/10 https://t.co/gPmJHmtgak https://twitter.com/dog_rates/status/682032003584274432/photo/1 11 10 Ulysses
1680 682003177596559360 2015-12-30 01:00:03 Twitter for iPhone Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet https://t.co/Hy9La4xNX3 https://twitter.com/dog_rates/status/682003177596559360/photo/1 5 10 NaN
1681 681981167097122816 2015-12-29 23:32:35 Twitter for iPhone This is Jimothy. He's a Trinidad Poliwhirl. Father was a velociraptor. Exceptionally unamused. 12/10 would adopt https://t.co/VwdIk0OwVx https://twitter.com/dog_rates/status/681981167097122816/photo/1 12 10 Jimothy
1682 681891461017812993 2015-12-29 17:36:07 Twitter for iPhone Say hello to Charlie. He's scholarly af. Quite intimidating with all his pupper knowledge 10/10 even built that fire https://t.co/9KThv6z8u5 https://twitter.com/dog_rates/status/681891461017812993/photo/1 10 10 Charlie pupper pupper
1683 681694085539872773 2015-12-29 04:31:49 Twitter for iPhone This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://t.co/TONMhRoQh7 https://twitter.com/dog_rates/status/681694085539872773/photo/1 11 10 Bo pupper pupper
1684 681679526984871937 2015-12-29 03:33:58 Twitter for iPhone Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals https://t.co/3uCcDEJLXs https://twitter.com/dog_rates/status/681679526984871937/photo/1 7 10 NaN pupper pupper
1685 681654059175129088 2015-12-29 01:52:46 Twitter for iPhone This is Toffee. He's a happy pupper. Appears dangerously fluffy. Extraordinarily spherical. 12/10 would pet firmly https://t.co/oEXEKt3MHu https://twitter.com/dog_rates/status/681654059175129088/photo/1 12 10 Toffee pupper pupper
1686 681610798867845120 2015-12-28 23:00:52 Twitter for iPhone *collapses* 12/10 https://t.co/C7M8mnzHIK https://twitter.com/dog_rates/status/681610798867845120/photo/1 12 10 NaN
1687 681579835668455424 2015-12-28 20:57:50 Twitter for iPhone This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there https://t.co/ojUBrDCHLT https://twitter.com/dog_rates/status/681579835668455424/photo/1 8 10 Apollo
1688 681523177663676416 2015-12-28 17:12:42 Twitter for iPhone This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https://t.co/GQn2IopLud https://twitter.com/dog_rates/status/681523177663676416/photo/1 12 10 Carly
1690 681339448655802368 2015-12-28 05:02:37 Twitter for iPhone This is Asher. He's not wearing a seatbelt or keeping both paws on the wheel. Absolute menace on the roadways. 9/10 https://t.co/V3SWuHACkh https://twitter.com/dog_rates/status/681339448655802368/photo/1 9 10 Asher
1691 681320187870711809 2015-12-28 03:46:05 Twitter for iPhone This is Glacier. He's a very happy pup. Loves to sing in the sunlight. 11/10 https://t.co/jTBPqKgkz7 https://twitter.com/dog_rates/status/681320187870711809/photo/1 11 10 Glacier
1692 681302363064414209 2015-12-28 02:35:15 Twitter for iPhone This is Chuck. He's a neat dog. Very flexible. Trapped in a glass case of emotion. Devastatingly unfluffy 3/10 https://t.co/YqbU9xHV3p https://twitter.com/dog_rates/status/681302363064414209/photo/1 3 10 Chuck
1693 681297372102656000 2015-12-28 02:15:26 Twitter for iPhone This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap https://twitter.com/dog_rates/status/681297372102656000/photo/1 12 10 actually
1694 681281657291280384 2015-12-28 01:12:59 Twitter for iPhone Meet Sarge. His parents signed him up for dancing lessons but his true passion is roller coasters 11/10 very petable https://t.co/KvVoBIgkje https://twitter.com/dog_rates/status/681281657291280384/photo/1 11 10 Sarge
1695 681261549936340994 2015-12-27 23:53:05 Twitter for iPhone Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots https://t.co/wL1iDvbcVk https://twitter.com/dog_rates/status/681261549936340994/photo/1 9 10 Panda
1696 681242418453299201 2015-12-27 22:37:04 Twitter for iPhone This is Champ. He's being sacrificed to the Aztec sun god Huitzilopochtli. So sad. 10/10 Champ doesn't deserve this https://t.co/VGsziXImoy https://twitter.com/dog_rates/status/681242418453299201/photo/1 10 10 Champ
1697 681231109724700672 2015-12-27 21:52:07 Twitter for iPhone I just love this pic. 11/10 this pupper is going places https://t.co/P16uhh1PbI https://twitter.com/dog_rates/status/681231109724700672/photo/1 11 10 NaN pupper pupper
1698 681193455364796417 2015-12-27 19:22:30 Twitter for iPhone This is Aspen. He's astronomically fluffy. I wouldn't stop petting this dog if the world was ending around me 11/10 https://t.co/oBlgL9nxpx https://twitter.com/dog_rates/status/681193455364796417/photo/1,https://twitter.com/dog_rates/status/681193455364796417/photo/1 11 10 Aspen
1699 680970795137544192 2015-12-27 04:37:44 Twitter for iPhone I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 https://t.co/CXSJZ4Stk3 https://twitter.com/dog_rates/status/680970795137544192/photo/1 9 10 NaN
1700 680959110691590145 2015-12-27 03:51:18 Twitter for iPhone This is Ozzie. He was doing fine until he lost traction in those festive socks. Now he's tired. 9/10 still killin it https://t.co/u4FYdIRKnY https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1 9 10 Ozzie
1701 680940246314430465 2015-12-27 02:36:20 Twitter for iPhone This is Alice. She's an idiot. 4/10 https://t.co/VQXdwJfkyS https://twitter.com/dog_rates/status/680940246314430465/photo/1 4 10 Alice
1702 680934982542561280 2015-12-27 02:15:25 Twitter for iPhone Say hello to Sadie. She's a Tortellini Sidewinder. Very jubilant pup. Seems loyal. Leaves on point. 10/10 petable af https://t.co/g2bTu4ayPl https://twitter.com/dog_rates/status/680934982542561280/photo/1 10 10 Sadie
1703 680913438424612864 2015-12-27 00:49:49 Twitter for iPhone Meet Griswold. He's dapper as hell. Already pumped for next Christmas. 11/10 https://t.co/5NrpNDyFzN https://twitter.com/dog_rates/status/680913438424612864/photo/1 11 10 Griswold
1704 680889648562991104 2015-12-26 23:15:17 Twitter for iPhone This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup https://t.co/cH2H7mch2H https://twitter.com/dog_rates/status/680889648562991104/photo/1 9 10 Cheesy
1705 680836378243002368 2015-12-26 19:43:36 Twitter for iPhone This is Ellie. She's secretly ferocious. 12/10 very deadly pupper https://t.co/BF4BW8LUgb https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1 12 10 Ellie pupper pupper
1706 680805554198020098 2015-12-26 17:41:07 Vine - Make a Scene This guy's dog broke. So sad. 9/10 would still pet https://t.co/BYiXJDEzv7 https://vine.co/v/iAP0Ugzi2PO 9 10 NaN
1707 680801747103793152 2015-12-26 17:25:59 Twitter for iPhone Great picture here. Dog on the right panicked &amp; forgot about his tongue. Middle green dog must've fainted. All 10/10 https://t.co/31npKUAox0 https://twitter.com/dog_rates/status/680801747103793152/photo/1 10 10 NaN
1708 680798457301471234 2015-12-26 17:12:55 Twitter for iPhone Say hello to Moofasa. He must be a powerful dog. Fenced in for your protection. Just got his ear pierced. 6/10 https://t.co/w6fRfQ3RXD https://twitter.com/dog_rates/status/680798457301471234/photo/1 6 10 Moofasa
1709 680609293079592961 2015-12-26 04:41:15 Twitter for iPhone This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually https://t.co/WvJRg0XJit https://twitter.com/dog_rates/status/680609293079592961/photo/1 9 10 Brody
1710 680583894916304897 2015-12-26 03:00:19 Twitter for iPhone This is Penny. Her tennis ball slowly rolled down her cone and into the pool. 8/10 bad things happen to good puppers https://t.co/YNWU7LeFgg https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1 8 10 Penny
1711 680497766108381184 2015-12-25 21:18:05 Twitter for iPhone Meet Percy. He's a Latvian Yuletide Heineken. Refuses to take off sweater. Kinda feisty. 12/10 would keep in pocket https://t.co/QGM5Fcuv7s https://twitter.com/dog_rates/status/680497766108381184/photo/1 12 10 Percy
1712 680494726643068929 2015-12-25 21:06:00 Twitter for iPhone Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD https://twitter.com/dog_rates/status/680494726643068929/photo/1 26 10 NaN
1713 680473011644985345 2015-12-25 19:39:43 Twitter for iPhone This is Hector. He thinks he's a hammer. Silly Hector. You're a pupper, not a hammer. 10/10 https://t.co/OdUFuZIXiI https://twitter.com/dog_rates/status/680473011644985345/photo/1 10 10 Hector pupper pupper
1714 680440374763077632 2015-12-25 17:30:01 Twitter for iPhone Merry Christmas. My gift to you is this tiny unicorn running into a wall in slow motion. 11/10 https://t.co/UKqIAnR3He https://twitter.com/dog_rates/status/680440374763077632/video/1 11 10 NaN
1715 680221482581123072 2015-12-25 03:00:14 Twitter for iPhone This is CeCe. She's patiently waiting for Santa. 10/10 https://t.co/ZJUypFFwvg https://twitter.com/dog_rates/status/680221482581123072/photo/1 10 10 CeCe
1716 680206703334408192 2015-12-25 02:01:30 Twitter for iPhone I hope everyone enjoys this picture as much as I do. This is Toby. 12/10 https://t.co/vHnu1g9EJm https://twitter.com/dog_rates/status/680206703334408192/photo/1 12 10 Toby
1717 680191257256136705 2015-12-25 01:00:07 Twitter for iPhone Here's a sleepy Christmas pupper 11/10 https://t.co/KXg0f8GNQ9 https://twitter.com/dog_rates/status/680191257256136705/photo/1 11 10 NaN pupper pupper
1718 680176173301628928 2015-12-25 00:00:11 Twitter for iPhone This pupper is patiently waiting to scare the shit out of Santa. 10/10 https://t.co/NhXo67K6yt https://twitter.com/dog_rates/status/680176173301628928/photo/1 10 10 NaN pupper pupper
1719 680161097740095489 2015-12-24 23:00:17 Twitter for iPhone Meet Goliath. He's an example of irony. Head is phenomenally round. Wants to be an ornament. 12/10 would hug gently https://t.co/72Dil0Aktw https://twitter.com/dog_rates/status/680161097740095489/photo/1 12 10 Goliath
1720 680145970311643136 2015-12-24 22:00:10 Twitter for iPhone Say hello to Kawhi. He was doing fine until his hat fell off. He got it back though. 10/10 deep breaths pupper https://t.co/N5pM6WBx7e https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1 10 10 Kawhi pupper pupper
1721 680130881361686529 2015-12-24 21:00:12 Twitter for iPhone This is Reggie. His Santa hat is a little big. 10/10 he's still having fun https://t.co/w0dcGXq7qK https://twitter.com/dog_rates/status/680130881361686529/photo/1 10 10 Reggie
1722 680115823365742593 2015-12-24 20:00:22 Twitter for iPhone This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy https://t.co/Kt9vmw0Fap https://twitter.com/dog_rates/status/680115823365742593/photo/1 9 10 Ozzy
1723 680100725817409536 2015-12-24 19:00:23 TweetDeck This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable https://t.co/lvMYbmKq8H https://twitter.com/dog_rates/status/680100725817409536/photo/1 11 10 NaN pupper pupper
1724 680085611152338944 2015-12-24 18:00:19 TweetDeck This is by far the most coordinated series of pictures I was sent. Downright impressive in every way. 12/10 for all https://t.co/etzLo3sdZE https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1 12 10 by
1725 680070545539371008 2015-12-24 17:00:27 TweetDeck Say hello to Emmie. She's trapped in an ornament. Tragic af. Looks pretty content tho. Maybe it's meant to be. 9/10 https://t.co/Fh7geodBCU https://twitter.com/dog_rates/status/680070545539371008/photo/1 9 10 Emmie
1726 680055455951884288 2015-12-24 16:00:30 TweetDeck Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.co/MQfPK4zwuh https://twitter.com/dog_rates/status/680055455951884288/photo/1 10 10 Sammy
1727 679877062409191424 2015-12-24 04:11:37 Twitter for iPhone Meet Penelope. She's a bacon frise. Total babe (lol get it like the movie). Doesn't bark tho. 5/10 very average dog https://t.co/SDcQYg0HSZ https://twitter.com/dog_rates/status/679877062409191424/photo/1 5 10 Penelope
1728 679872969355714560 2015-12-24 03:55:21 Vine - Make a Scene This is Rocco. He's in a very intense game of freeze tag. Currently waiting to be unfrozen 10/10 https://t.co/xZXUKVXJ7l https://vine.co/v/iAAxTbj1UAM 10 10 Rocco
1729 679862121895714818 2015-12-24 03:12:15 Twitter for iPhone "Dammit hooman I'm jus trynna lik the fler" 11/10 https://t.co/eRZRI8OTj7 https://twitter.com/dog_rates/status/679862121895714818/photo/1 11 10 NaN
1730 679854723806179328 2015-12-24 02:42:51 Twitter for iPhone This is Bruce. He's a rare pup. Covered in Frosted Flakes. Nifty gold teeth. Overall good dog. 7/10 would pet firmly https://t.co/RtxxACzZ8A https://twitter.com/dog_rates/status/679854723806179328/photo/1 7 10 Bruce
1731 679844490799091713 2015-12-24 02:02:12 Twitter for iPhone This is Willie. He's floating away and needs your assistance. Please someone help Willie. 10/10 https://t.co/MJqygWqt8X https://twitter.com/dog_rates/status/679844490799091713/photo/1 10 10 Willie
1732 679828447187857408 2015-12-24 00:58:27 Twitter for iPhone Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1 13 10 NaN pupper pupper
1733 679777920601223168 2015-12-23 21:37:40 Twitter for iPhone This is Rinna. She's melting. 10/10 get inside pupper https://t.co/PA0czwucsb https://twitter.com/dog_rates/status/679777920601223168/photo/1 10 10 Rinna pupper pupper
1734 679736210798047232 2015-12-23 18:51:56 Twitter for iPhone This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP https://twitter.com/dog_rates/status/679736210798047232/photo/1 9 10 NaN
1735 679729593985699840 2015-12-23 18:25:38 Twitter for iPhone This is Hunter. He was playing with his ball minding his own business. Has no idea what happened to the carpet. 8/10 https://t.co/DbUTDI3u1R https://twitter.com/dog_rates/status/679729593985699840/photo/1 8 10 Hunter
1736 679722016581222400 2015-12-23 17:55:32 Twitter for iPhone This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 https://t.co/NL5QJwdEpF https://twitter.com/dog_rates/status/679722016581222400/photo/1 8 10 Mike
1737 679530280114372609 2015-12-23 05:13:38 Twitter for iPhone Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC https://twitter.com/dog_rates/status/679530280114372609/photo/1 7 10 NaN
1738 679527802031484928 2015-12-23 05:03:47 Twitter for iPhone This little pupper just arrived. 11/10 would snug https://t.co/DA5aqnSGfB https://twitter.com/dog_rates/status/679527802031484928/photo/1 11 10 NaN pupper pupper
1739 679511351870550016 2015-12-23 03:58:25 Twitter for iPhone Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 https://t.co/bwuV6FlRxr https://twitter.com/dog_rates/status/679511351870550016/photo/1 7 10 William
1740 679503373272485890 2015-12-23 03:26:43 Twitter for iPhone This is Dwight. He's a pointy pupper. Very docile. Attracts marshmallows. Hurts to pet but definitely worth it 8/10 https://t.co/jjW7zTxY9Z https://twitter.com/dog_rates/status/679503373272485890/photo/1 8 10 Dwight pupper pupper
1741 679475951516934144 2015-12-23 01:37:45 Twitter for iPhone This is Evy. She doesn't want to be a Koala. 9/10 https://t.co/VITeF0Kl9L https://twitter.com/dog_rates/status/679475951516934144/photo/1 9 10 Evy
1742 679462823135686656 2015-12-23 00:45:35 Twitter for iPhone Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/M6vqkt2GKV https://twitter.com/dog_rates/status/679462823135686656/photo/1 11 10 Hurley
1743 679405845277462528 2015-12-22 20:59:10 Vine - Make a Scene Crazy unseen footage from Jurassic Park. 10/10 for both dinosaur puppers https://t.co/L8wt2IpwxO https://vine.co/v/iKVFEigMLxP 10 10 NaN
1744 679158373988876288 2015-12-22 04:35:49 Twitter for iPhone This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag https://twitter.com/dog_rates/status/679158373988876288/photo/1 11 10 Rubio
1745 679148763231985668 2015-12-22 03:57:37 Twitter for iPhone I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 https://t.co/eWjWgbOCYL https://twitter.com/dog_rates/status/679148763231985668/photo/1 8 10 NaN
1746 679132435750195208 2015-12-22 02:52:45 Twitter for iPhone This is Louis. He's a river dancer. His friends think it's badass. All are very supportive. 10/10 for Louis https://t.co/qoIvjKMY58 https://twitter.com/dog_rates/status/679132435750195208/photo/1 10 10 Louis
1747 679111216690831360 2015-12-22 01:28:25 Twitter for iPhone This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE https://twitter.com/dog_rates/status/679111216690831360/video/1 12 10 officially
1748 679062614270468097 2015-12-21 22:15:18 Twitter for iPhone This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1 11 10 Chompsky
1749 679047485189439488 2015-12-21 21:15:11 Twitter for iPhone This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup https://t.co/kTpr9PTMg1 https://twitter.com/dog_rates/status/679047485189439488/photo/1 9 10 NaN
1750 679001094530465792 2015-12-21 18:10:50 Vine - Make a Scene This is Rascal. He's paddling an imaginary canoe. 11/10 https://t.co/Ajquq6oGSg https://vine.co/v/iKIwAzEatd6 11 10 Rascal
1751 678991772295516161 2015-12-21 17:33:48 Twitter for iPhone If your Monday isn't going so well just take a look at this. Both 12/10 https://t.co/GJT6SILPGU https://twitter.com/dog_rates/status/678991772295516161/photo/1 12 10 NaN
1752 678969228704284672 2015-12-21 16:04:13 Twitter for iPhone Meet Lola. She's a Metamorphic Chartreuse. Plays with her food. Insubordinate and churlish. Exquisite hardwood 11/10 https://t.co/etpBNXwN7f https://twitter.com/dog_rates/status/678969228704284672/photo/1 11 10 Lola
1753 678800283649069056 2015-12-21 04:52:53 Twitter for iPhone Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 https://t.co/DpCSVsl6vu https://twitter.com/dog_rates/status/678800283649069056/photo/1 12 10 NaN pupper pupper
1754 678798276842360832 2015-12-21 04:44:55 Twitter for iPhone This is Linda. She fucking hates trees. 7/10 https://t.co/blaY85FIxR https://twitter.com/dog_rates/status/678798276842360832/photo/1 7 10 Linda
1755 678774928607469569 2015-12-21 03:12:08 Twitter for iPhone This is Tug. He's not required to wear the cone he just wants his voice to project more clearly. 11/10 https://t.co/Sp739Ou2qx https://twitter.com/dog_rates/status/678774928607469569/photo/1 11 10 Tug
1756 678767140346941444 2015-12-21 02:41:11 Twitter for iPhone This is Mia. She makes awful decisions. 8/10 https://t.co/G6TQVgTcZz https://twitter.com/dog_rates/status/678767140346941444/photo/1 8 10 Mia
1757 678764513869611008 2015-12-21 02:30:45 Twitter for iPhone Meet Wilson. He got caught humping the futon. He's like "dude, help me out here" 10/10 I'd help Wilson out https://t.co/m6XoclB0qv https://twitter.com/dog_rates/status/678764513869611008/photo/1 10 10 Wilson
1758 678755239630127104 2015-12-21 01:53:54 Twitter for iPhone This is Dash. He didn't think the water would be that cold. Damn it Dash it's December. Think a little. 10/10 https://t.co/NqcOwG8pxW https://twitter.com/dog_rates/status/678755239630127104/photo/1 10 10 Dash
1759 678740035362037760 2015-12-21 00:53:29 Twitter for iPhone Meet Tango. He's a large dog. Doesn't care much for personal space. Owner isn't very accepting. Tongue slip. 6/10 https://t.co/p2T5kGebxe https://twitter.com/dog_rates/status/678740035362037760/photo/1 6 10 Tango
1760 678708137298427904 2015-12-20 22:46:44 Vine - Make a Scene Here we are witnessing a wild field pupper. Lost his wallet in there. Rather unfortunate. 10/10 good luck pup https://t.co/sZy9Co74Bw https://vine.co/v/eQjxxYaQ60K 10 10 NaN pupper pupper
1761 678675843183484930 2015-12-20 20:38:24 Twitter for iPhone Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet https://t.co/a8SqCaSo2r https://twitter.com/dog_rates/status/678675843183484930/photo/1 2 10 NaN
1762 678643457146150913 2015-12-20 18:29:43 Twitter for iPhone Meet Grizz. He just arrived. Couldn't wait until Christmas. Worried bc he saw the swastikas on the carpet. 10/10 https://t.co/QBGwYrT7rv https://twitter.com/dog_rates/status/678643457146150913/photo/1 10 10 Grizz
1763 678446151570427904 2015-12-20 05:25:42 Twitter for iPhone Touching scene here. Really stirs up the emotions. The bond between father &amp; son. So beautiful. 10/10 for both pups https://t.co/AJWJHov5gx https://twitter.com/dog_rates/status/678446151570427904/photo/1 10 10 NaN
1764 678424312106393600 2015-12-20 03:58:55 Twitter for iPhone This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible https://t.co/rtMtjSl9pz https://twitter.com/dog_rates/status/678424312106393600/photo/1 2 10 Crystal
1765 678410210315247616 2015-12-20 03:02:53 Twitter for iPhone Say hello to Jerome. He can shoot french fries out of his mouth at insane speeds. Deadly af. 10/10 https://t.co/dIy88HwrX8 https://twitter.com/dog_rates/status/678410210315247616/photo/1 10 10 Jerome
1766 678399652199309312 2015-12-20 02:20:55 Twitter for iPhone This made my day. 12/10 please enjoy https://t.co/VRTbo3aAcm https://twitter.com/dog_rates/status/678399652199309312/video/1 12 10 NaN
1767 678396796259975168 2015-12-20 02:09:34 Twitter for iPhone These little fellas have opposite facial expressions. Both 12/10 https://t.co/LmThv0GWen https://twitter.com/dog_rates/status/678396796259975168/photo/1,https://twitter.com/dog_rates/status/678396796259975168/photo/1 12 10 NaN
1768 678389028614488064 2015-12-20 01:38:42 Twitter for iPhone This is Bella. She just learned that her final grade in chem was a 92.49 \npoor pupper 11/10 https://t.co/auOoKuoveM https://twitter.com/dog_rates/status/678389028614488064/photo/1 11 10 Bella pupper pupper
1769 678380236862578688 2015-12-20 01:03:46 Twitter for iPhone This is Crumpet. He underestimated the snow. Quickly retreating. 10/10 https://t.co/a0Zx5LDFZa https://twitter.com/dog_rates/status/678380236862578688/photo/1 10 10 Crumpet
1770 678341075375947776 2015-12-19 22:28:09 Twitter for iPhone This pupper likes tape. 12/10 https://t.co/cSp6w5GWgm https://twitter.com/dog_rates/status/678341075375947776/photo/1 12 10 NaN pupper pupper
1771 678334497360859136 2015-12-19 22:02:01 Twitter for iPhone This is Rosie. She has a snazzy bow tie and a fin for a tail. Probably super fast underwater. Cool socks 10/10 https://t.co/GO76MdGBs0 https://twitter.com/dog_rates/status/678334497360859136/photo/1 10 10 Rosie
1772 678278586130948096 2015-12-19 18:19:51 Twitter for iPhone Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked https://t.co/JK8MByRzgj https://twitter.com/dog_rates/status/678278586130948096/photo/1 10 10 NaN pupper pupper
1773 678255464182861824 2015-12-19 16:47:58 Twitter for iPhone This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup https://t.co/nZhmRwZzWv https://twitter.com/dog_rates/status/678255464182861824/photo/1 9 10 Jessifer
1775 678021115718029313 2015-12-19 01:16:45 Twitter for iPhone This is Reese. He likes holding hands. 12/10 https://t.co/cbLroGCbmh https://twitter.com/dog_rates/status/678021115718029313/photo/1 12 10 Reese
1776 677961670166224897 2015-12-18 21:20:32 Vine - Make a Scene This is Izzy. She's showing off the dance moves she's been working on. 11/10 I guess hard work pays off https://t.co/4JS92YAxTi https://vine.co/v/iKuMDuYV0aZ 11 10 Izzy
1777 677918531514703872 2015-12-18 18:29:07 Twitter for iPhone "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 https://t.co/lWL2IMJqLR https://twitter.com/dog_rates/status/677918531514703872/photo/1 10 10 NaN
1778 677895101218201600 2015-12-18 16:56:01 Twitter for iPhone Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 https://t.co/EJImi1udYb https://twitter.com/dog_rates/status/677895101218201600/photo/1 9 10 NaN
1779 677716515794329600 2015-12-18 05:06:23 Twitter for iPhone IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq https://twitter.com/dog_rates/status/677716515794329600/photo/1 144 120 NaN
1780 677700003327029250 2015-12-18 04:00:46 Twitter for iPhone This is Ralph. He's an interpretive dancer. 10/10 https://t.co/zoDdPyPFsa https://twitter.com/dog_rates/status/677700003327029250/photo/1 10 10 Ralph
1781 677698403548192770 2015-12-18 03:54:25 Twitter for iPhone This is Sadie. She got her holidays confused. 9/10 damn it Sadie https://t.co/fm7HxOsuPK https://twitter.com/dog_rates/status/677698403548192770/photo/1 9 10 Sadie
1782 677687604918272002 2015-12-18 03:11:30 Twitter for iPhone This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 https://t.co/gzkuVGRgAD https://twitter.com/dog_rates/status/677687604918272002/photo/1 11 10 NaN
1783 677673981332312066 2015-12-18 02:17:22 Twitter for iPhone Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 https://t.co/GFVIHIod0Z https://twitter.com/dog_rates/status/677673981332312066/photo/1 9 10 NaN
1784 677662372920729601 2015-12-18 01:31:14 Twitter for iPhone In honor of the new Star Wars movie. Here's Yoda pug. 12/10 pet really well, would I https://t.co/pvjdRn00XH https://twitter.com/dog_rates/status/677662372920729601/photo/1 12 10 NaN
1785 677644091929329666 2015-12-18 00:18:36 Twitter for iPhone This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND https://twitter.com/dog_rates/status/677644091929329666/video/1 11 10 NaN
1786 677573743309385728 2015-12-17 19:39:03 Twitter for iPhone This is Sandy. He's sexually confused. Thinks he's a pigeon. Also an All-American cheese catcher. 10/10 so petable https://t.co/Htu8plSqEu https://twitter.com/dog_rates/status/677573743309385728/photo/1,https://twitter.com/dog_rates/status/677573743309385728/photo/1 10 10 Sandy
1787 677565715327688705 2015-12-17 19:07:09 Twitter for iPhone Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 https://t.co/EX9oR55VMe https://twitter.com/dog_rates/status/677565715327688705/photo/1 6 10 NaN
1788 677557565589463040 2015-12-17 18:34:46 Twitter for iPhone Reckless pupper here. Not even looking at road. Absolute menace. No regard for fellow pupper lives. 10/10 still cute https://t.co/96IBkOYB7j https://twitter.com/dog_rates/status/677557565589463040/photo/1 10 10 NaN pupper pupper
1789 677547928504967168 2015-12-17 17:56:29 Twitter for iPhone Not much to say here. I just think everyone needs to see this. 12/10 https://t.co/AGag0hFHpe https://twitter.com/dog_rates/status/677547928504967168/photo/1 12 10 NaN
1790 677530072887205888 2015-12-17 16:45:31 Twitter for iPhone Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun https://t.co/DKe9DBnnHE https://twitter.com/dog_rates/status/677530072887205888/photo/1 9 10 Axel
1791 677335745548390400 2015-12-17 03:53:20 Vine - Make a Scene Downright inspiring 12/10 https://t.co/vSLtYBWHcQ https://vine.co/v/hbLbH77Ar67 12 10 NaN
1792 677334615166730240 2015-12-17 03:48:51 Twitter for iPhone This dog gave up mid jump. 9/10 https://t.co/KmMv3Y2zI8 https://twitter.com/dog_rates/status/677334615166730240/photo/1,https://twitter.com/dog_rates/status/677334615166730240/photo/1 9 10 NaN
1793 677331501395156992 2015-12-17 03:36:28 Twitter for iPhone Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af https://t.co/FS7eJQM2F4 https://twitter.com/dog_rates/status/677331501395156992/photo/1 9 10 Humphrey
1794 677328882937298944 2015-12-17 03:26:04 Twitter for iPhone This is Derek. All the dogs adore Derek. He's a great guy. 10/10 really solid pup https://t.co/KgcsGNb61s https://twitter.com/dog_rates/status/677328882937298944/photo/1 10 10 Derek
1795 677314812125323265 2015-12-17 02:30:09 Twitter for iPhone Meet Tassy &amp; Bee. Tassy is pretty chill, but Bee is convinced the Ruffles are haunted. 10/10 &amp; 11/10 respectively https://t.co/fgORpmTN9C https://twitter.com/dog_rates/status/677314812125323265/photo/1,https://twitter.com/dog_rates/status/677314812125323265/photo/1 10 10 Tassy
1796 677301033169788928 2015-12-17 01:35:24 Twitter for iPhone This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson https://t.co/IoLRvF0Kak https://twitter.com/dog_rates/status/677301033169788928/photo/1 5 10 Juckson
1797 677269281705472000 2015-12-16 23:29:14 Twitter for iPhone This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb https://twitter.com/dog_rates/status/677269281705472000/photo/1 10 10 NaN pupper pupper
1798 677228873407442944 2015-12-16 20:48:40 Twitter for iPhone Say hello to Chuq. He just wants to fit in. 11/10 https://t.co/hGkMCjZzn4 https://twitter.com/dog_rates/status/677228873407442944/photo/1 11 10 Chuq
1799 677187300187611136 2015-12-16 18:03:28 Twitter for iPhone Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 https://t.co/gzI0m6wXRo https://twitter.com/dog_rates/status/677187300187611136/photo/1 9 10 NaN
1800 676975532580409345 2015-12-16 04:01:59 Twitter for iPhone This is Cooper. He doesn't know how cheese works. Likes the way it feels on his face. Cheeky tongue slip. 11/10 https://t.co/j1zczS0lI5 https://twitter.com/dog_rates/status/676975532580409345/photo/1 11 10 Cooper
1801 676957860086095872 2015-12-16 02:51:45 Twitter for iPhone 10/10 I'd follow this dog into battle no questions asked https://t.co/ngTNXYQF0L https://twitter.com/dog_rates/status/676957860086095872/video/1 10 10 NaN
1802 676949632774234114 2015-12-16 02:19:04 Twitter for iPhone This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa https://twitter.com/dog_rates/status/676949632774234114/photo/1 8 10 Tyrus
1803 676948236477857792 2015-12-16 02:13:31 Twitter for iPhone This is Karl. Karl thinks he's slick. 6/10 sneaky pup https://t.co/Lo4ALwjVh4 https://twitter.com/dog_rates/status/676948236477857792/photo/1 6 10 Karl
1804 676946864479084545 2015-12-16 02:08:04 Twitter for iPhone This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 https://t.co/2mXALbgBTV https://twitter.com/dog_rates/status/676946864479084545/photo/1 12 10 NaN
1805 676942428000112642 2015-12-16 01:50:26 Twitter for iPhone Who leaves the last cupcake just sitting there? 9/10 https://t.co/PWMqAoEx2a https://twitter.com/dog_rates/status/676942428000112642/photo/1 9 10 NaN
1806 676936541936185344 2015-12-16 01:27:03 Twitter for iPhone Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.co/mqvaxleHRz https://twitter.com/dog_rates/status/676936541936185344/photo/1 8 10 NaN pupper pupper
1807 676916996760600576 2015-12-16 00:09:23 Vine - Make a Scene Super speedy pupper. Does not go gentle into that goodnight. 10/10 https://t.co/uPXBXS1XNb https://vine.co/v/imJ0BdZOJTw 10 10 NaN pupper pupper
1808 676897532954456065 2015-12-15 22:52:02 Twitter for iPhone Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk https://t.co/Avq4awulqk https://twitter.com/dog_rates/status/676897532954456065/photo/1 5 10 NaN
1809 676864501615042560 2015-12-15 20:40:47 Twitter for iPhone Meet Ash. He's just a head now. Lost his body during the Third Crusade. Still in good spirits. 10/10 would pet well https://t.co/NJj2uP0atK https://twitter.com/dog_rates/status/676864501615042560/photo/1 10 10 Ash
1810 676821958043033607 2015-12-15 17:51:44 Twitter for iPhone Finally some constructive political change in this country. 11/10 https://t.co/mvQaETHVSb https://twitter.com/dog_rates/status/676821958043033607/photo/1,https://twitter.com/dog_rates/status/676821958043033607/photo/1 11 10 NaN
1811 676819651066732545 2015-12-15 17:42:34 Twitter for iPhone Watch out Airbud. This pupper is also good at the sports. 12/10 I'm thinking D1 https://t.co/1HrFdo7M0C https://twitter.com/dog_rates/status/676819651066732545/photo/1,https://twitter.com/dog_rates/status/676819651066732545/photo/1 12 10 NaN pupper pupper
1812 676811746707918848 2015-12-15 17:11:09 Twitter for iPhone Say hello to Penny &amp; Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both https://t.co/aqBHjjh5VD https://twitter.com/dog_rates/status/676811746707918848/photo/1 9 10 Penny
1813 676776431406465024 2015-12-15 14:50:49 Twitter for iPhone When someone yells "cops!" at a party and you gotta get your drunk friend out of there. 10/10 https://t.co/4rMZi5Ca1k https://twitter.com/dog_rates/status/676776431406465024/video/1 10 10 NaN
1814 676617503762681856 2015-12-15 04:19:18 Twitter for iPhone I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 https://t.co/mpQl2rJjDh https://twitter.com/dog_rates/status/676617503762681856/photo/1 13 10 NaN pupper pupper
1815 676613908052996102 2015-12-15 04:05:01 Twitter for iPhone This is the saddest/sweetest/best picture I've been sent. 12/10 😢🐶 https://t.co/vQ2Lw1BLBF https://twitter.com/dog_rates/status/676613908052996102/photo/1 12 10 NaN
1816 676606785097199616 2015-12-15 03:36:42 Twitter for iPhone *screeches for a sec and then faints* 12/10 https://t.co/N5QL4ySBEx https://twitter.com/dog_rates/status/676606785097199616/photo/1 12 10 NaN
1817 676603393314578432 2015-12-15 03:23:14 Twitter for iPhone This is Godzilla pupper. He had a ruff childhood &amp; now deflects that pain outward by terrorizing cities. Tragic 9/10 https://t.co/g1tLGkyaxr https://twitter.com/dog_rates/status/676603393314578432/photo/1 9 10 Godzilla pupper pupper
1818 676593408224403456 2015-12-15 02:43:33 Vine - Make a Scene This pupper loves leaves. 11/10 for committed leaf lover https://t.co/APvLqbEhkF https://vine.co/v/eEQQaPFbgOY 11 10 NaN pupper pupper
1820 676588346097852417 2015-12-15 02:23:26 Twitter for iPhone This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 https://t.co/Nrhvc5tLFT https://twitter.com/dog_rates/status/676588346097852417/photo/1 5 10 Bubbles
1821 676582956622721024 2015-12-15 02:02:01 Twitter for iPhone Meet Vinnie. He's having fun while being safe. Well not a lot of fun, but definitely safe, and that's important 8/10 https://t.co/vZYtynZZlH https://twitter.com/dog_rates/status/676582956622721024/photo/1 8 10 Vinnie
1822 676575501977128964 2015-12-15 01:32:24 Twitter for iPhone This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 https://t.co/NsGyECJuq7 https://twitter.com/dog_rates/status/676575501977128964/photo/1 8 10 NaN pupper pupper
1823 676533798876651520 2015-12-14 22:46:41 Twitter for iPhone ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ https://twitter.com/dog_rates/status/676533798876651520/photo/1 12 10 NaN
1824 676496375194980353 2015-12-14 20:17:59 Twitter for iPhone Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup https://t.co/eoBCjSFajX https://twitter.com/dog_rates/status/676496375194980353/photo/1 9 10 Griffin
1825 676470639084101634 2015-12-14 18:35:43 Twitter for iPhone Three generations of pupper. 11/10 for all https://t.co/tAmQYvzrau https://twitter.com/dog_rates/status/676470639084101634/photo/1 11 10 NaN pupper pupper
1826 676440007570247681 2015-12-14 16:34:00 Twitter for iPhone Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each https://t.co/dB0H9hdZai https://twitter.com/dog_rates/status/676440007570247681/photo/1,https://twitter.com/dog_rates/status/676440007570247681/photo/1 11 10 NaN
1827 676430933382295552 2015-12-14 15:57:56 Twitter for iPhone Meet Duke. He's an Urban Parmesan. They know he's scared of the green rubber dog. "Why u do dis?" thinks Duke. 10/10 https://t.co/3bim9U5Idr https://twitter.com/dog_rates/status/676430933382295552/photo/1 10 10 Duke
1828 676263575653122048 2015-12-14 04:52:55 Twitter for iPhone All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year https://t.co/fTgbq1UBR9 https://twitter.com/dog_rates/status/676263575653122048/photo/1 10 10 NaN pupper pupper
1829 676237365392908289 2015-12-14 03:08:46 Twitter for iPhone Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 https://t.co/dOLQddhXLZ https://twitter.com/dog_rates/status/676237365392908289/photo/1 8 10 Winston
1830 676219687039057920 2015-12-14 01:58:31 Twitter for iPhone This is Kenneth. He's stuck in a bubble. 10/10 hang in there Kenneth https://t.co/uQt37xlYMJ https://twitter.com/dog_rates/status/676219687039057920/photo/1 10 10 Kenneth
1831 676215927814406144 2015-12-14 01:43:35 Twitter for iPhone This is Herm. He just wants to be like the other dogs. Sneaky tongue slip. Super fuzzy. 9/10 would cuddle firmly https://t.co/tg8h9lzCHv https://twitter.com/dog_rates/status/676215927814406144/photo/1 9 10 Herm
1832 676191832485810177 2015-12-14 00:07:50 Twitter for iPhone These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog https://t.co/gwryaJO4tC https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1 10 10 NaN
1833 676146341966438401 2015-12-13 21:07:04 Twitter for iPhone This is Bert. He likes flowers. 10/10 https://t.co/lmQRrNxaQu https://twitter.com/dog_rates/status/676146341966438401/photo/1 10 10 Bert
1834 676121918416756736 2015-12-13 19:30:01 Vine - Make a Scene Here we are witnessing a very excited dog. Clearly has no control over neck movements. 8/10 would still pet https://t.co/ICNIjSkrXs https://vine.co/v/iZXg7VpeDAv 8 10 NaN
1835 676101918813499392 2015-12-13 18:10:33 Twitter for iPhone Meet Striker. He's ready for Christmas. 11/10 https://t.co/B3xxSLjQSH https://twitter.com/dog_rates/status/676101918813499392/photo/1 11 10 Striker
1836 676098748976615425 2015-12-13 17:57:57 Twitter for iPhone Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 https://t.co/REyE5YKVBb https://twitter.com/dog_rates/status/676098748976615425/photo/1 3 10 NaN
1837 676089483918516224 2015-12-13 17:21:08 Twitter for iPhone "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp https://twitter.com/dog_rates/status/676089483918516224/photo/1 9 10 NaN
1838 675898130735476737 2015-12-13 04:40:46 Twitter for iPhone I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 https://t.co/G0pQiFGM7O https://twitter.com/dog_rates/status/675898130735476737/photo/1 10 10 NaN pupper pupper
1839 675891555769696257 2015-12-13 04:14:39 Twitter for iPhone This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone https://t.co/kiW6Knb7Gp https://twitter.com/dog_rates/status/675891555769696257/photo/1 6 10 Donny
1840 675888385639251968 2015-12-13 04:02:03 Twitter for iPhone Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith https://t.co/06oZdehGEa https://twitter.com/dog_rates/status/675888385639251968/photo/1 10 10 NaN
1841 675878199931371520 2015-12-13 03:21:34 Twitter for iPhone Ok, I'll admit this is a pretty adorable bunny hopping towards the ocean but please only send in dogs... 11/10 https://t.co/sfsVCGIipI https://twitter.com/dog_rates/status/675878199931371520/photo/1 11 10 NaN
1843 675853064436391936 2015-12-13 01:41:41 Twitter for iPhone Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw https://twitter.com/dog_rates/status/675853064436391936/photo/1,https://twitter.com/dog_rates/status/675853064436391936/photo/1 88 80 NaN
1845 675845657354215424 2015-12-13 01:12:15 Twitter for iPhone This is Pepper. She's not fully comfortable riding her imaginary bike yet. 10/10 don't worry pupper, it gets easier https://t.co/40dj4eTsXG https://twitter.com/dog_rates/status/675845657354215424/photo/1 10 10 Pepper pupper pupper
1846 675822767435051008 2015-12-12 23:41:18 Twitter for iPhone 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s https://t.co/GK2HJtkdQk https://twitter.com/dog_rates/status/675822767435051008/photo/1 10 10 NaN
1847 675820929667219457 2015-12-12 23:34:00 Twitter for iPhone Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s https://t.co/lyXX3v5j4s https://twitter.com/dog_rates/status/675820929667219457/photo/1 11 10 NaN
1848 675798442703122432 2015-12-12 22:04:39 Twitter for iPhone This is Bernie. He just touched a boob for the first time. 10/10 https://t.co/whQKMygnK6 https://twitter.com/dog_rates/status/675798442703122432/photo/1 10 10 Bernie
1849 675781562965868544 2015-12-12 20:57:34 Twitter for iPhone Say hello to Buddah. He was Waldo for Halloween. 11/10 https://t.co/DVAqAnb624 https://twitter.com/dog_rates/status/675781562965868544/photo/1 11 10 Buddah
1850 675740360753160193 2015-12-12 18:13:51 Twitter for iPhone Here's a pupper licking in slow motion. 12/10 please enjoy https://t.co/AUJi8ujxw9 https://twitter.com/dog_rates/status/675740360753160193/video/1 12 10 NaN pupper pupper
1851 675710890956750848 2015-12-12 16:16:45 Twitter for iPhone This is Lenny. He was just told that he couldn't explore the fish tank. 12/10 smh all that work for nothing https://t.co/JWi6YrpiO1 https://twitter.com/dog_rates/status/675710890956750848/photo/1,https://twitter.com/dog_rates/status/675710890956750848/photo/1 12 10 Lenny
1853 675706639471788032 2015-12-12 15:59:51 Twitter for iPhone This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI https://twitter.com/dog_rates/status/675706639471788032/photo/1 10 10 NaN
1854 675534494439489536 2015-12-12 04:35:48 Twitter for iPhone Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj https://twitter.com/dog_rates/status/675534494439489536/photo/1 11 10 NaN
1855 675531475945709568 2015-12-12 04:23:49 Twitter for iPhone This is Ellie AKA Queen Slayer of the Orbs. Very self-motivated. Great yard. Rad foliage. 10/10 would pet diligently https://t.co/c9jmg3Xtzn https://twitter.com/dog_rates/status/675531475945709568/photo/1 10 10 Ellie
1856 675522403582218240 2015-12-12 03:47:46 Twitter for iPhone Meet Sammy. He's a Motorola Firefox. Hat under hoodie (must be a half-decent up and coming white rapper) 10/10 https://t.co/rO2zxf0OQ0 https://twitter.com/dog_rates/status/675522403582218240/photo/1 10 10 Sammy
1857 675517828909424640 2015-12-12 03:29:35 Twitter for iPhone 12/10 stay woke https://t.co/XDiQw4Akiw https://twitter.com/dog_rates/status/675517828909424640/photo/1 12 10 NaN
1858 675501075957489664 2015-12-12 02:23:01 Twitter for iPhone I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH https://twitter.com/dog_rates/status/675501075957489664/photo/1 13 10 NaN
1859 675497103322386432 2015-12-12 02:07:14 Twitter for iPhone Meet Reggie. He's going for the world record. Must concentrate. Focus up pup. 11/10 we all believe in you Reggie https://t.co/h3AWz4AzuC https://twitter.com/dog_rates/status/675497103322386432/photo/1 11 10 Reggie
1860 675489971617296384 2015-12-12 01:38:53 Twitter for iPhone RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 https://t.co/MnTrKaQ8Wn https://twitter.com/dog_rates/status/675489971617296384/photo/1 10 10 NaN
1861 675483430902214656 2015-12-12 01:12:54 Twitter for iPhone Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 https://t.co/C3tlKVq7eO https://twitter.com/dog_rates/status/675483430902214656/photo/1 5 10 NaN
1862 675432746517426176 2015-12-11 21:51:30 Twitter for iPhone Happy Friday. Here's some golden puppers. 12/10 for all https://t.co/wNkqAED6lG https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1 12 10 NaN
1863 675372240448454658 2015-12-11 17:51:04 Twitter for iPhone The tail alone is 13/10. Great dog, better owner https://t.co/IyAXinfyju https://twitter.com/dog_rates/status/675372240448454658/photo/1 13 10 NaN
1864 675362609739206656 2015-12-11 17:12:48 Twitter for iPhone This is Daisy. She loves that shoe. Still no seat belt. Super churlish. 12/10 the dogs are killing it today https://t.co/cZlkvgRPdn https://twitter.com/dog_rates/status/675362609739206656/photo/1 12 10 Daisy
1865 675354435921575936 2015-12-11 16:40:19 Twitter Web Client Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC https://twitter.com/dog_rates/status/675354435921575936/video/1 13 10 NaN
1867 675334060156301312 2015-12-11 15:19:21 Twitter for iPhone Good morning here's a grass pupper. 12/10 https://t.co/2d68FmWGGs https://twitter.com/dog_rates/status/675334060156301312/photo/1,https://twitter.com/dog_rates/status/675334060156301312/photo/1 12 10 NaN pupper pupper
1868 675166823650848770 2015-12-11 04:14:49 Twitter for iPhone This is Arnold. He broke his leg saving a handicapped child from a forest fire. True hero. 10/10 inspirational dog https://t.co/bijCeHeX4C https://twitter.com/dog_rates/status/675166823650848770/photo/1 10 10 Arnold
1869 675153376133427200 2015-12-11 03:21:23 Twitter for iPhone What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table https://t.co/RDXCfk8hK0 https://twitter.com/dog_rates/status/675153376133427200/photo/1 1 10 NaN
1870 675149409102012420 2015-12-11 03:05:37 Twitter for iPhone holy shit 12/10 https://t.co/p6O8X93bTQ https://twitter.com/dog_rates/status/675149409102012420/photo/1 12 10 NaN
1871 675147105808306176 2015-12-11 02:56:28 Twitter for iPhone When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 https://t.co/f50mbB4UWS https://twitter.com/dog_rates/status/675147105808306176/photo/1 10 10 NaN
1872 675146535592706048 2015-12-11 02:54:12 Twitter for iPhone This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 https://t.co/Uz52oYnHzF https://twitter.com/dog_rates/status/675146535592706048/photo/1 7 10 Coops
1873 675145476954566656 2015-12-11 02:49:59 Twitter for iPhone What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all https://t.co/YDgstgIDGs https://twitter.com/dog_rates/status/675145476954566656/photo/1 9 10 NaN
1874 675135153782571009 2015-12-11 02:08:58 Twitter for iPhone This is Steven. He got locked outside. Damn it Steven. 5/10 nice grill tho https://t.co/zf7Sxxjfp3 https://twitter.com/dog_rates/status/675135153782571009/photo/1 5 10 Steven
1875 675113801096802304 2015-12-11 00:44:07 Twitter for iPhone Meet Zuzu. He just graduated college. Astute pupper. Needs 2 leashes to contain him. Wasn't ready for the pic. 10/10 https://t.co/2H5SKmk0k7 https://twitter.com/dog_rates/status/675113801096802304/photo/1 10 10 Zuzu pupper pupper
1876 675111688094527488 2015-12-11 00:35:44 Twitter for iPhone Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 https://t.co/lFU9W31Fg9 https://twitter.com/dog_rates/status/675111688094527488/photo/1 8 10 Oliver
1877 675109292475830276 2015-12-11 00:26:12 Twitter for iPhone C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 https://twitter.com/dog_rates/status/675109292475830276/photo/1 9 10 NaN
1878 675047298674663426 2015-12-10 20:19:52 Twitter for iPhone This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI https://twitter.com/dog_rates/status/675047298674663426/photo/1 11 10 NaN
1879 675015141583413248 2015-12-10 18:12:05 Twitter for iPhone Meet Moe. He's a golden Fetty Woof. Doesn't respect the authorities. Might own a motorhome? 10/10 revolutionary pup https://t.co/JAncIdNp8G https://twitter.com/dog_rates/status/675015141583413248/photo/1 10 10 Moe
1880 675006312288268288 2015-12-10 17:37:00 Twitter for iPhone Say hello to Mollie. This pic was taken after she bet all her toys on Ronda Rousey. 10/10 hang in there pupper https://t.co/QMmAqA9VqO https://twitter.com/dog_rates/status/675006312288268288/photo/1 10 10 Mollie pupper pupper
1881 675003128568291329 2015-12-10 17:24:21 Twitter for iPhone Meet Laela. She's adorable. Magnificent eyes. But I don't see a seat belt. Insubordinate.. and churlish. Still 12/10 https://t.co/pCGDgLkLo6 https://twitter.com/dog_rates/status/675003128568291329/photo/1,https://twitter.com/dog_rates/status/675003128568291329/photo/1 12 10 Laela
1883 674805413498527744 2015-12-10 04:18:42 Twitter for iPhone When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 https://t.co/vqFkgYPCW8 https://twitter.com/dog_rates/status/674805413498527744/video/1 10 10 NaN
1884 674800520222154752 2015-12-10 03:59:15 Twitter for iPhone This is Tedders. He broke his leg saving babies from the Pompeii eruption. 11/10 where's his Purple Heart? @POTUS https://t.co/cMI2AcLm4B https://twitter.com/dog_rates/status/674800520222154752/photo/1 11 10 Tedders
1886 674790488185167872 2015-12-10 03:19:24 Twitter for iPhone ER... MER... GERD 13/10 https://t.co/L1puJISV1a https://twitter.com/dog_rates/status/674790488185167872/photo/1 13 10 NaN
1887 674788554665512960 2015-12-10 03:11:43 Twitter for iPhone Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 https://t.co/P3ElQ2wsjb https://twitter.com/dog_rates/status/674788554665512960/photo/1 9 10 Maggie
1888 674781762103414784 2015-12-10 02:44:43 Twitter for iPhone Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 https://t.co/ot8yMUGodj https://twitter.com/dog_rates/status/674781762103414784/photo/1 8 10 NaN
1889 674774481756377088 2015-12-10 02:15:47 Twitter for iPhone This is Superpup. His head isn't proportional to his body. Has yet to serve any justice. 11/10 maybe one day pupper https://t.co/gxIFgg8ktm https://twitter.com/dog_rates/status/674774481756377088/photo/1 11 10 Superpup pupper pupper
1890 674767892831932416 2015-12-10 01:49:36 Twitter for iPhone This pup was carefully tossed to make it look like she's riding that horse. I have no words this is fabulous. 12/10 https://t.co/Bob33W4sfD https://twitter.com/dog_rates/status/674767892831932416/photo/1 12 10 NaN
1891 674764817387900928 2015-12-10 01:37:23 Twitter for iPhone These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s https://t.co/RBiQ8hPqwr https://twitter.com/dog_rates/status/674764817387900928/photo/1,https://twitter.com/dog_rates/status/674764817387900928/photo/1 10 10 NaN
1893 674752233200820224 2015-12-10 00:47:23 Twitter for iPhone Everyone please just appreciate how perfect these two photos are. 12/10 for both https://t.co/rLf7asnHxO https://twitter.com/dog_rates/status/674752233200820224/photo/1,https://twitter.com/dog_rates/status/674752233200820224/photo/1 12 10 NaN
1894 674743008475090944 2015-12-10 00:10:43 Twitter for iPhone This is Sophie. She just saw a spider. 10/10 don't just stand there Sophie https://t.co/VagYftZccT https://twitter.com/dog_rates/status/674743008475090944/photo/1 10 10 Sophie
1896 674739953134403584 2015-12-09 23:58:35 Twitter for iPhone "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 https://t.co/URNs5zFskc https://twitter.com/dog_rates/status/674739953134403584/photo/1 11 10 NaN
1897 674737130913071104 2015-12-09 23:47:22 Twitter for iPhone Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 &amp; 4/10 https://t.co/KNfLnYPmYh https://twitter.com/dog_rates/status/674737130913071104/photo/1 10 10 Rufio pupper pupper
1898 674690135443775488 2015-12-09 20:40:38 Twitter for iPhone Meet Patrick. He's an exotic pup. Jumps great distances for a dog. Always gets injured when I toss him a ball. 3/10 https://t.co/Unz1uNrOzo https://twitter.com/dog_rates/status/674690135443775488/photo/1 3 10 Patrick
1899 674670581682434048 2015-12-09 19:22:56 Twitter for iPhone Meet Jeb &amp; Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s https://t.co/NRNExUy9Hm https://twitter.com/dog_rates/status/674670581682434048/photo/1 9 10 Jeb
1900 674664755118911488 2015-12-09 18:59:46 Twitter for iPhone This is Rodman. He's getting destroyed by the surfs. Valiant effort though. 10/10 better than most puppers probably https://t.co/S8wCLemrNb https://twitter.com/dog_rates/status/674664755118911488/photo/1 10 10 Rodman
1901 674646392044941312 2015-12-09 17:46:48 Twitter for iPhone Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 &amp; 8/10 https://t.co/YPfw7oahbD https://twitter.com/dog_rates/status/674646392044941312/photo/1 5 10 NaN
1902 674644256330530816 2015-12-09 17:38:19 Twitter for iPhone When you see sophomores in high school driving. 11/10 https://t.co/m6aC8d1Kzp https://twitter.com/dog_rates/status/674644256330530816/photo/1 11 10 NaN
1903 674638615994089473 2015-12-09 17:15:54 Twitter for iPhone This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog https://t.co/F33n1hy3LL https://twitter.com/dog_rates/status/674638615994089473/photo/1 12 10 NaN pupper pupper
1904 674632714662858753 2015-12-09 16:52:27 Twitter for iPhone Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet https://t.co/EJzzNHE8bE https://twitter.com/dog_rates/status/674632714662858753/photo/1 5 10 NaN
1906 674468880899788800 2015-12-09 06:01:26 Twitter for iPhone This is Louis. He thinks he's flying. 13/10 this is a legendary pup https://t.co/6d9WziPXmx https://twitter.com/dog_rates/status/674468880899788800/photo/1,https://twitter.com/dog_rates/status/674468880899788800/photo/1 13 10 Louis
1907 674447403907457024 2015-12-09 04:36:06 Twitter for iPhone This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper https://t.co/AyJ7Ohk71f https://twitter.com/dog_rates/status/674447403907457024/photo/1 10 10 NaN pupper pupper
1908 674436901579923456 2015-12-09 03:54:22 Twitter for iPhone Meet Bailey. She plays with her food. Very childish. Doesn't even need a battle helmet smh. Still cute though. 9/10 https://t.co/CLEOjxhTEx https://twitter.com/dog_rates/status/674436901579923456/photo/1 9 10 Bailey
1909 674422304705744896 2015-12-09 02:56:22 Twitter for iPhone This is Ava. She doesn't understand flowers. 12/10 would caress firmly https://t.co/BxTJAFSIgk https://twitter.com/dog_rates/status/674422304705744896/photo/1 12 10 Ava
1910 674416750885273600 2015-12-09 02:34:18 Twitter for iPhone This is Jonah. He's a Stinted Fisher Price. Enjoys chewing on his miniature RipStik. 10/10 very upbeat fellow https://t.co/7qjXy1uUYY https://twitter.com/dog_rates/status/674416750885273600/photo/1 10 10 Jonah
1911 674410619106390016 2015-12-09 02:09:56 Twitter for iPhone This is Lenny. He wants to be a sprinkler. 10/10 you got this Lenny https://t.co/CZ0YaB40Hn https://twitter.com/dog_rates/status/674410619106390016/photo/1 10 10 Lenny
1912 674394782723014656 2015-12-09 01:07:00 Twitter for iPhone This is Gary. He's a hide and seek champion. Second only to Kony. 8/10 Gary has a gift https://t.co/cAlB4XCcsi https://twitter.com/dog_rates/status/674394782723014656/photo/1 8 10 Gary
1913 674372068062928900 2015-12-08 23:36:44 Twitter for iPhone Meet Chesney. On the outside he stays calm &amp; collected. On the inside he's having a complete mental breakdown. 10/10 https://t.co/G4m0TFY9uc https://twitter.com/dog_rates/status/674372068062928900/photo/1 10 10 Chesney
1915 674318007229923329 2015-12-08 20:01:55 Twitter for iPhone This is Lennon. He's in quite the predicament. 8/10 hang in there pupper https://t.co/7mf8XXPAZv https://twitter.com/dog_rates/status/674318007229923329/photo/1 8 10 Lennon pupper pupper
1916 674307341513269249 2015-12-08 19:19:32 Vine - Make a Scene This is life-changing. 12/10 https://t.co/SroTpI6psB https://vine.co/v/i7nWzrenw5h 12 10 life
1917 674291837063053312 2015-12-08 18:17:56 Twitter for iPhone This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK https://twitter.com/dog_rates/status/674291837063053312/photo/1 11 10 Kenny
1918 674271431610523648 2015-12-08 16:56:51 Twitter for iPhone "AT DAWN, WE RIDE"\n10/10 for both dogs https://t.co/3aXX6wH6it https://twitter.com/dog_rates/status/674271431610523648/photo/1 10 10 NaN
1919 674269164442398721 2015-12-08 16:47:50 Twitter for iPhone This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 https://t.co/vYe9RlVz2N https://twitter.com/dog_rates/status/674269164442398721/photo/1 8 10 Bob
1920 674265582246694913 2015-12-08 16:33:36 Twitter for iPhone This is Henry. He's a shit dog. Short pointy ears. Leaves trail of pee. Not fluffy. Doesn't come when called. 2/10 https://t.co/Pu9RhfHDEQ https://twitter.com/dog_rates/status/674265582246694913/photo/1 2 10 Henry
1921 674262580978937856 2015-12-08 16:21:41 Twitter for iPhone This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper https://t.co/gJS1qU0jP7 https://twitter.com/dog_rates/status/674262580978937856/photo/1 9 10 Gus pupper pupper
1922 674255168825880576 2015-12-08 15:52:13 Twitter for iPhone Say hello to Bobbay. He's a marshmallow wizard. 10/10 https://t.co/r6LZN1o1Gx https://twitter.com/dog_rates/status/674255168825880576/photo/1 10 10 Bobbay
1923 674082852460433408 2015-12-08 04:27:30 Twitter for iPhone This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU https://twitter.com/dog_rates/status/674082852460433408/photo/1 11 10 NaN
1924 674075285688614912 2015-12-08 03:57:26 Twitter for iPhone Say hello to Mitch. He thinks that's a hat. Nobody has told him yet. 11/10 please no one tell him https://t.co/7jOPktauh4 https://twitter.com/dog_rates/status/674075285688614912/photo/1 11 10 Mitch
1925 674063288070742018 2015-12-08 03:09:46 Twitter for iPhone This is Earl. Earl is lost. Someone help Earl. He has no tags. Just trying to get home. 5/10 hang in there Earl https://t.co/1ZbfqAVDg6 https://twitter.com/dog_rates/status/674063288070742018/photo/1 5 10 Earl
1926 674053186244734976 2015-12-08 02:29:37 Twitter for iPhone This is Stanley. Yes he is aware of the spoon's presence, he just doesn't know what he should do about it. 10/10 https://t.co/gQAMg5ypW5 https://twitter.com/dog_rates/status/674053186244734976/photo/1 10 10 Stanley
1927 674051556661161984 2015-12-08 02:23:09 Twitter for iPhone This is Lucy. She knits. Specializes in toboggans. 10/10 I'd buy a toboggan from Lucy https://t.co/YE2XDHy4Yk https://twitter.com/dog_rates/status/674051556661161984/photo/1 10 10 Lucy
1928 674045139690631169 2015-12-08 01:57:39 Twitter for iPhone Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers https://t.co/t5ih0VrK02 https://twitter.com/dog_rates/status/674045139690631169/photo/1 3 10 NaN
1929 674042553264685056 2015-12-08 01:47:22 Twitter for iPhone Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all https://t.co/sAI6gCGZYX https://twitter.com/dog_rates/status/674042553264685056/photo/1 12 10 NaN
1930 674038233588723717 2015-12-08 01:30:12 Twitter for iPhone This is Kaiya. She's an aspiring shoe model. 12/10 follow your dreams pupper https://t.co/nX8FiGRHvk https://twitter.com/dog_rates/status/674038233588723717/photo/1 12 10 Kaiya pupper pupper
1931 674036086168010753 2015-12-08 01:21:40 Twitter for iPhone Meet Daisy. She has no eyes &amp; her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 https://t.co/jcNdw43BIP https://twitter.com/dog_rates/status/674036086168010753/photo/1 9 10 Daisy
1932 674024893172875264 2015-12-08 00:37:11 Twitter for iPhone When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 https://t.co/qzYXbyv0SJ https://twitter.com/dog_rates/status/674024893172875264/photo/1 10 10 NaN
1933 674019345211760640 2015-12-08 00:15:09 Twitter for iPhone This is Acro. You briefly see her out of the corner of your eye. You look and she's not there. 10/10 mysterious pup https://t.co/fqiEsTduEs https://twitter.com/dog_rates/status/674019345211760640/photo/1 10 10 Acro
1934 674014384960745472 2015-12-07 23:55:26 Twitter for iPhone Say hello to Aiden. His eyes are magical. Loves his little Guy Fieri friend. Sneaky tongue slip. 11/10 would caress https://t.co/Ac37LOe3xD https://twitter.com/dog_rates/status/674014384960745472/photo/1 11 10 Aiden
1935 674008982932058114 2015-12-07 23:33:58 Twitter for iPhone This pup is sad bc he didn't get to be the toy car. Also he has shitty money management skills. 10/10 still cute tho https://t.co/PiSXXZjDSJ https://twitter.com/dog_rates/status/674008982932058114/photo/1 10 10 NaN
1936 673956914389192708 2015-12-07 20:07:04 Twitter for iPhone This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd https://twitter.com/dog_rates/status/673956914389192708/photo/1 10 10 one pupper pupper
1937 673919437611909120 2015-12-07 17:38:09 Twitter for iPhone This is Obie. He is on guard watching for evildoers from the comfort of his pumpkin. Very brave pupper. 11/10 https://t.co/cdwPTsGEAb https://twitter.com/dog_rates/status/673919437611909120/photo/1 11 10 Obie pupper pupper
1938 673906403526995968 2015-12-07 16:46:21 Twitter for iPhone Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 https://t.co/t5rQHl6W8M https://twitter.com/dog_rates/status/673906403526995968/photo/1 3 10 NaN
1939 673887867907739649 2015-12-07 15:32:42 Twitter for iPhone When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 https://t.co/6qYd6BNSPd https://twitter.com/dog_rates/status/673887867907739649/photo/1,https://twitter.com/dog_rates/status/673887867907739649/photo/1 10 10 NaN
1941 673715861853720576 2015-12-07 04:09:13 Twitter for iPhone This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 https://t.co/dFiaKZ9cDl https://twitter.com/dog_rates/status/673715861853720576/photo/1 4 10 NaN
1942 673711475735838725 2015-12-07 03:51:47 Twitter for iPhone 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 https://t.co/MTOOksRzvH https://twitter.com/dog_rates/status/673711475735838725/photo/1 10 10 NaN
1943 673709992831262724 2015-12-07 03:45:53 Twitter for iPhone I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 https://t.co/s2ktuPQd79 https://twitter.com/dog_rates/status/673709992831262724/photo/1 12 10 NaN
1944 673708611235921920 2015-12-07 03:40:24 Twitter for iPhone This is Riley. She's just an adorable football fan. 12/10 I'd watch the sports with her https://t.co/kLV8zUCfc8 https://twitter.com/dog_rates/status/673708611235921920/photo/1 12 10 Riley
1945 673707060090052608 2015-12-07 03:34:14 Twitter for iPhone This is Raymond. He's absolutely terrified of floating tennis ball. 10/10 it'll be ok pupper https://t.co/QyH1CaY3SM https://twitter.com/dog_rates/status/673707060090052608/photo/1,https://twitter.com/dog_rates/status/673707060090052608/photo/1 10 10 Raymond pupper pupper
1946 673705679337693185 2015-12-07 03:28:45 Twitter for iPhone This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 https://t.co/Ymg4fwKlZd https://twitter.com/dog_rates/status/673705679337693185/photo/1 8 10 Dot
1947 673700254269775872 2015-12-07 03:07:12 Twitter for iPhone Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup https://t.co/mcPd5AFfhA https://twitter.com/dog_rates/status/673700254269775872/photo/1 3 10 NaN
1948 673697980713705472 2015-12-07 02:58:09 Twitter for iPhone This is Pickles. She's a tiny pointy pupper. Average walker. Very skeptical of wet leaf. 8/10 https://t.co/lepRCaGcgw https://twitter.com/dog_rates/status/673697980713705472/photo/1,https://twitter.com/dog_rates/status/673697980713705472/photo/1 8 10 Pickles pupper pupper
1949 673689733134946305 2015-12-07 02:25:23 Twitter for iPhone When you're having a blast and remember tomorrow's Monday. 11/10 https://t.co/YPsJasNVGe https://twitter.com/dog_rates/status/673689733134946305/photo/1,https://twitter.com/dog_rates/status/673689733134946305/photo/1 11 10 NaN
1950 673688752737402881 2015-12-07 02:21:29 Twitter for iPhone Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry https://t.co/jMki5GOV3y https://twitter.com/dog_rates/status/673688752737402881/photo/1 9 10 Larry
1951 673686845050527744 2015-12-07 02:13:55 Twitter for iPhone This is George. He's upset that the 4th of July isn't everyday. 11/10 https://t.co/wImU0jdx3E https://twitter.com/dog_rates/status/673686845050527744/photo/1 11 10 George
1952 673680198160809984 2015-12-07 01:47:30 Twitter for iPhone This is Shnuggles. I would kill for Shnuggles. 13/10 https://t.co/GwvpQiQ7oQ https://twitter.com/dog_rates/status/673680198160809984/photo/1 13 10 Shnuggles
1953 673662677122719744 2015-12-07 00:37:52 Twitter for iPhone This is Kendall. 12/10 would cuddle the hell out of https://t.co/fJulMurnfj https://twitter.com/dog_rates/status/673662677122719744/photo/1 12 10 Kendall
1954 673656262056419329 2015-12-07 00:12:23 Twitter for iPhone This is Albert AKA King Banana Peel. He's a kind ruler of the kitchen. Very jubilant pupper. 10/10 overall great dog https://t.co/PN8hxgZ9We https://twitter.com/dog_rates/status/673656262056419329/photo/1 10 10 Albert pupper pupper
1955 673636718965334016 2015-12-06 22:54:44 Twitter for iPhone This is a Lofted Aphrodisiac Terrier named Kip. Big fan of bed n breakfasts. Fits perfectly. 10/10 would pet firmly https://t.co/gKlLpNzIl3 https://twitter.com/dog_rates/status/673636718965334016/photo/1 10 10 NaN
1956 673612854080196609 2015-12-06 21:19:54 Twitter for iPhone This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 https://t.co/0iyItbtkr8 https://twitter.com/dog_rates/status/673612854080196609/photo/1 7 10 Jeffri pupper pupper
1957 673583129559498752 2015-12-06 19:21:47 Twitter for iPhone This is Sandy. She loves her spot by the tree. Contemplating her true purpose in the universe. Wears socks. 11/10 https://t.co/JpoEvgbDug https://twitter.com/dog_rates/status/673583129559498752/photo/1 11 10 Sandy
1958 673580926094458881 2015-12-06 19:13:01 Twitter for iPhone When you ask your professor about extra credit on the last day of class. 8/10 https://t.co/H6rqZyE4NP https://twitter.com/dog_rates/status/673580926094458881/photo/1 8 10 NaN
1959 673576835670777856 2015-12-06 18:56:46 Twitter for iPhone Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely https://t.co/WlKiN3ll0w https://twitter.com/dog_rates/status/673576835670777856/photo/1 7 10 NaN
1960 673363615379013632 2015-12-06 04:49:31 Twitter for iPhone This little pupper can't wait for Christmas. He's pretending to be a present. S'cute. 11/10 twenty more days 🎁🎄🐶 https://t.co/m8r9rbcgX4 https://twitter.com/dog_rates/status/673363615379013632/photo/1 11 10 NaN pupper pupper
1961 673359818736984064 2015-12-06 04:34:25 Twitter for iPhone This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup https://t.co/EPq0MRAraJ https://twitter.com/dog_rates/status/673359818736984064/photo/1 8 10 Steve
1962 673355879178194945 2015-12-06 04:18:46 Twitter for iPhone This is Koda. She's a boss. Helps shift gears. Can even drive herself. Still no seat belt (reckless af). 11/10 https://t.co/0zUxlrhZrQ https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1 11 10 Koda
1963 673352124999274496 2015-12-06 04:03:51 Twitter for iPhone *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 https://t.co/az5PLGzVNJ https://twitter.com/dog_rates/status/673352124999274496/photo/1 12 10 NaN
1964 673350198937153538 2015-12-06 03:56:12 Twitter for iPhone This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it https://t.co/RMv9EAv57u https://twitter.com/dog_rates/status/673350198937153538/photo/1 9 10 Bella
1965 673345638550134785 2015-12-06 03:38:05 Twitter for iPhone This is Gerald. He's a fluffy lil yellow pup. Always looks like his favorite team just lost on a hail mary. 7/10 https://t.co/GpSkpN8kXS https://twitter.com/dog_rates/status/673345638550134785/photo/1 7 10 Gerald
1966 673343217010679808 2015-12-06 03:28:27 Twitter for iPhone IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNUbKOSiWW https://twitter.com/dog_rates/status/673343217010679808/photo/1 11 10 NaN
1967 673342308415348736 2015-12-06 03:24:51 Twitter for iPhone This is Django. He's a skilled assassin pupper. 10/10 https://t.co/w0YTuiRd1a https://twitter.com/dog_rates/status/673342308415348736/photo/1 10 10 Django pupper pupper
1968 673320132811366400 2015-12-06 01:56:44 Twitter for iPhone This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1 11 10 Frankie
1969 673317986296586240 2015-12-06 01:48:12 Twitter for iPhone Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both https://t.co/juX48bWpng https://twitter.com/dog_rates/status/673317986296586240/photo/1,https://twitter.com/dog_rates/status/673317986296586240/photo/1 10 10 NaN
1970 673295268553605120 2015-12-06 00:17:55 Twitter for iPhone Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https://t.co/U36HYQIijg https://twitter.com/dog_rates/status/673295268553605120/photo/1 8 10 Eve pupper pupper
1971 673270968295534593 2015-12-05 22:41:22 Twitter for iPhone This is Mac. His dad's probably a lawyer. 11/10 https://t.co/mjC0QpXGum https://twitter.com/dog_rates/status/673270968295534593/photo/1 11 10 Mac
1972 673240798075449344 2015-12-05 20:41:29 Twitter for iPhone Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 https://twitter.com/dog_rates/status/673240798075449344/photo/1 6 10 NaN
1973 673213039743795200 2015-12-05 18:51:11 Twitter for iPhone This is Dexter. He just got some big news. 10/10 https://t.co/CbvCUE6PFI https://twitter.com/dog_rates/status/673213039743795200/photo/1 10 10 Dexter
1974 673148804208660480 2015-12-05 14:35:56 Twitter for iPhone This is Fletcher. He's had a ruff night. No more Fireball for Fletcher. 8/10 it'll be over soon pupper https://t.co/tA4WpkI2cw https://twitter.com/dog_rates/status/673148804208660480/photo/1 8 10 Fletcher pupper pupper
1975 672997845381865473 2015-12-05 04:36:04 Twitter for iPhone Say hello to Kenzie. She is a fluff ball. 12/10 you'd need to taser me for me to let go of her https://t.co/dph1UHNJrg https://twitter.com/dog_rates/status/672997845381865473/photo/1 12 10 Kenzie
1976 672995267319328768 2015-12-05 04:25:50 Twitter for iPhone This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 https://t.co/odpuqtz2Fq https://twitter.com/dog_rates/status/672995267319328768/photo/1 8 10 Pumpkin
1977 672988786805112832 2015-12-05 04:00:04 Twitter for iPhone This is Schnozz. He's had a blurred tail since birth. Hasn't let that stop him. 10/10 inspirational pupper https://t.co/a3zYMcvbXG https://twitter.com/dog_rates/status/672988786805112832/photo/1 10 10 Schnozz pupper pupper
1978 672984142909456390 2015-12-05 03:41:37 Twitter for iPhone Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 https://t.co/81BCQAyvcs https://twitter.com/dog_rates/status/672984142909456390/photo/1 9 10 NaN
1979 672980819271634944 2015-12-05 03:28:25 Twitter for iPhone Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet https://t.co/ufHWUFA9Pu https://twitter.com/dog_rates/status/672980819271634944/photo/1 5 10 NaN
1980 672975131468300288 2015-12-05 03:05:49 Twitter for iPhone This is Chuckles. He is one skeptical pupper. 10/10 stay woke Chuckles https://t.co/ZlcF0TIRW1 https://twitter.com/dog_rates/status/672975131468300288/photo/1 10 10 Chuckles pupper pupper
1981 672970152493887488 2015-12-05 02:46:02 Twitter for iPhone This is Chet. He's having a hard time. Really struggling. 7/10 hang in there pupper https://t.co/eb4ta0xtnd https://twitter.com/dog_rates/status/672970152493887488/photo/1 7 10 Chet pupper pupper
1982 672968025906282496 2015-12-05 02:37:35 Twitter for iPhone This is Gustaf. He's a purebred Chevy Equinox. Loves to shred. Gnarly lil pup. Great with the babes. 11/10 https://t.co/7CbO2eMAgJ https://twitter.com/dog_rates/status/672968025906282496/photo/1 11 10 Gustaf
1983 672964561327235073 2015-12-05 02:23:49 Twitter for iPhone This is Terry. He's a Toasty Western Sriracha. Doubles as a table. Great for parties. 10/10 would highly recommend https://t.co/1ui7a1ZLTT https://twitter.com/dog_rates/status/672964561327235073/photo/1 10 10 Terry
1984 672902681409806336 2015-12-04 22:17:55 Twitter for iPhone This is Jimison. He's stuck in a pot. Damn it Jimison. 9/10 https://t.co/KpLyca3o3E https://twitter.com/dog_rates/status/672902681409806336/photo/1 9 10 Jimison
1985 672898206762672129 2015-12-04 22:00:08 Twitter for iPhone This is Cheryl AKA Queen Pupper of the Skies. Experienced fighter pilot. Much skill. True hero. 11/10 https://t.co/i4XJEWwdsp https://twitter.com/dog_rates/status/672898206762672129/photo/1 11 10 Cheryl pupper pupper
1986 672884426393653248 2015-12-04 21:05:23 Twitter for iPhone Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup https://t.co/g5YkRqP0dg https://twitter.com/dog_rates/status/672884426393653248/photo/1 6 10 NaN
1987 672877615439593473 2015-12-04 20:38:19 Twitter for iPhone This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar https://t.co/dJHI7uC2y3 https://twitter.com/dog_rates/status/672877615439593473/photo/1 8 10 Oscar
1988 672834301050937345 2015-12-04 17:46:12 Twitter for iPhone This is Ed. He's not mad, just disappointed. 10/10 https://t.co/BIljU0zhLN https://twitter.com/dog_rates/status/672834301050937345/photo/1 10 10 Ed
1989 672828477930868736 2015-12-04 17:23:04 Twitter for iPhone This is Jerry. He's a Timbuk Slytherin. Eats his pizza from the side first. Crushed that cup with his bare paws 9/10 https://t.co/fvxHL6cRRs https://twitter.com/dog_rates/status/672828477930868736/photo/1 9 10 Jerry
1990 672640509974827008 2015-12-04 04:56:09 Twitter for iPhone This is Leonidas. He just got rekt by a snowball. 9/10 doggy down https://t.co/uNrmYDUa9M https://twitter.com/dog_rates/status/672640509974827008/photo/1 9 10 Leonidas
1991 672622327801233409 2015-12-04 03:43:54 Twitter for iPhone This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly https://t.co/Cv7dRdcMvQ https://twitter.com/dog_rates/status/672622327801233409/photo/1 12 10 NaN pupper pupper
1992 672614745925664768 2015-12-04 03:13:46 Twitter for iPhone This is Norman. Doesn't bark much. Very docile pup. Up to date on current events. Overall nifty pupper. 6/10 https://t.co/ntxsR98f3U https://twitter.com/dog_rates/status/672614745925664768/photo/1 6 10 Norman pupper pupper
1993 672609152938721280 2015-12-04 02:51:33 Twitter for iPhone This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl https://t.co/YAVwvNaois https://twitter.com/dog_rates/status/672609152938721280/photo/1 9 10 Caryl
1994 672604026190569472 2015-12-04 02:31:10 Twitter for iPhone This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe https://twitter.com/dog_rates/status/672604026190569472/photo/1 11 10 NaN
1995 672594978741354496 2015-12-04 01:55:13 Twitter for iPhone Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper https://t.co/jyXbZ35MYz https://twitter.com/dog_rates/status/672594978741354496/photo/1 9 10 Scott pupper pupper
1996 672591762242805761 2015-12-04 01:42:26 Twitter for iPhone This is Taz. He boxes leaves. 10/10 https://t.co/bWQ0iIcP0w https://twitter.com/dog_rates/status/672591762242805761/photo/1 10 10 Taz
1997 672591271085670400 2015-12-04 01:40:29 Twitter for iPhone Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all https://t.co/Pa8EmpDCuI https://twitter.com/dog_rates/status/672591271085670400/photo/1 8 10 NaN
1998 672538107540070400 2015-12-03 22:09:14 Twitter for iPhone Meet Darby. He's a Fiscal Tutankhamen Waxbeard. Really likes steak. 7/10 https://t.co/rSndxTL0Ap https://twitter.com/dog_rates/status/672538107540070400/photo/1 7 10 Darby
1999 672523490734551040 2015-12-03 21:11:09 Twitter for iPhone When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 https://t.co/EH0N3dFKUi https://twitter.com/dog_rates/status/672523490734551040/photo/1 10 10 NaN
2000 672488522314567680 2015-12-03 18:52:12 Twitter for iPhone This is Jackie. She was all ready to go out, but her friends just cancelled on her. 10/10 hang in there Jackie https://t.co/rVfi6CCidK https://twitter.com/dog_rates/status/672488522314567680/photo/1 10 10 Jackie
2001 672482722825261057 2015-12-03 18:29:09 Twitter for iPhone This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt https://twitter.com/dog_rates/status/672482722825261057/photo/1 10 10 light
2002 672481316919734272 2015-12-03 18:23:34 Twitter for iPhone Say hello to Jazz. She should be on the cover of Vogue. 12/10 gorgeous pupper https://t.co/mVCMemhXAP https://twitter.com/dog_rates/status/672481316919734272/photo/1 12 10 Jazz pupper pupper
2003 672475084225949696 2015-12-03 17:58:48 Twitter for iPhone This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well https://t.co/mYhQvAdV4f https://twitter.com/dog_rates/status/672475084225949696/photo/1 8 10 Buddy
2004 672466075045466113 2015-12-03 17:23:00 Twitter for iPhone This is Franq and Pablo. They're working hard getting ready for Christmas. 12/10 for both. Amazing pups https://t.co/8lKFBOQ2J5 https://twitter.com/dog_rates/status/672466075045466113/photo/1 12 10 Franq
2005 672272411274932228 2015-12-03 04:33:27 Twitter for iPhone This is Pippin. He is terrified of his new little yellow giraffe. 11/10 https://t.co/ZICNl6tIr5 https://twitter.com/dog_rates/status/672272411274932228/photo/1,https://twitter.com/dog_rates/status/672272411274932228/photo/1 11 10 Pippin
2006 672267570918129665 2015-12-03 04:14:13 Twitter for iPhone When you accidentally open up the front facing camera. 10/10 https://t.co/jDXxZARQIZ https://twitter.com/dog_rates/status/672267570918129665/photo/1 10 10 NaN
2007 672264251789176834 2015-12-03 04:01:02 Twitter for iPhone This is Kreg. He has the eyes of a tyrannical dictator. Will not rest until household is his. 10/10 https://t.co/TUeuaOmunV https://twitter.com/dog_rates/status/672264251789176834/photo/1 10 10 Kreg
2008 672256522047614977 2015-12-03 03:30:19 Twitter for iPhone Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all https://t.co/PoMKKnKpRd https://twitter.com/dog_rates/status/672256522047614977/photo/1 8 10 NaN
2009 672254177670729728 2015-12-03 03:21:00 Twitter for iPhone This is Rolf. He's having the time of his life. 11/10 good pupper https://t.co/OO6MqEbqG3 https://twitter.com/dog_rates/status/672254177670729728/photo/1 11 10 Rolf pupper pupper
2010 672248013293752320 2015-12-03 02:56:30 Twitter for iPhone 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all https://t.co/uhx5gfpx5k https://twitter.com/dog_rates/status/672248013293752320/photo/1 10 10 NaN
2011 672245253877968896 2015-12-03 02:45:32 Twitter for iPhone Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr https://twitter.com/dog_rates/status/672245253877968896/photo/1 12 10 Snickers
2012 672239279297454080 2015-12-03 02:21:48 Twitter for iPhone This is Ridley. He doesn't know how to couch. 7/10 https://t.co/UHJE0UgMf7 https://twitter.com/dog_rates/status/672239279297454080/photo/1 7 10 Ridley
2013 672231046314901505 2015-12-03 01:49:05 Twitter for iPhone Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft https://t.co/WH7Nzc5IBA https://twitter.com/dog_rates/status/672231046314901505/photo/1 5 10 NaN
2014 672222792075620352 2015-12-03 01:16:17 Twitter for iPhone This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 https://t.co/EW4MsOrF5O https://twitter.com/dog_rates/status/672222792075620352/photo/1 9 10 Cal
2015 672205392827572224 2015-12-03 00:07:09 Twitter for iPhone This is Opal. He's a Royal John Coctostan. Ready for transport. Basically indestructible. 9/10 good pupper https://t.co/yRBQF9OS7D https://twitter.com/dog_rates/status/672205392827572224/photo/1 9 10 Opal pupper pupper
2016 672169685991993344 2015-12-02 21:45:16 Twitter for iPhone This is Bradley. That is his sandwich. He carries it everywhere. 10/10 https://t.co/AjBkGTyCeO https://twitter.com/dog_rates/status/672169685991993344/photo/1 10 10 Bradley
2017 672160042234327040 2015-12-02 21:06:56 Twitter for iPhone This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper https://t.co/aNkkl5nH3W https://twitter.com/dog_rates/status/672160042234327040/photo/1 8 10 Bubba pupper pupper
2018 672139350159835138 2015-12-02 19:44:43 Twitter for iPhone This pup has a heart on its ass and that is downright legendary. 12/10 https://t.co/0OI927mmNJ https://twitter.com/dog_rates/status/672139350159835138/photo/1 12 10 NaN
2019 672125275208069120 2015-12-02 18:48:47 Twitter for iPhone This is just impressive I have nothing else to say. 11/10 https://t.co/LquQZiZjJP https://twitter.com/dog_rates/status/672125275208069120/photo/1 11 10 just
2020 672095186491711488 2015-12-02 16:49:14 Twitter for iPhone This is Tuco. That's the toast that killed his father. 9/10 https://t.co/ujnWy26RMe https://twitter.com/dog_rates/status/672095186491711488/photo/1 9 10 Tuco
2021 672082170312290304 2015-12-02 15:57:30 Twitter for iPhone This is Patch. He wants to be a Christmas tree. 11/10 https://t.co/WTJtf9O8Jg https://twitter.com/dog_rates/status/672082170312290304/photo/1 11 10 Patch
2022 672068090318987265 2015-12-02 15:01:33 Twitter for iPhone Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 https://t.co/XkMtCGhr4a https://twitter.com/dog_rates/status/672068090318987265/photo/1 7 10 Gizmo
2023 671896809300709376 2015-12-02 03:40:57 Twitter for iPhone This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH https://twitter.com/dog_rates/status/671896809300709376/photo/1 10 10 Lola
2024 671891728106971137 2015-12-02 03:20:45 Twitter for iPhone This is Mojo. Apparently he's too cute for a seat belt. Hella careless. I'd still pet him tho. 11/10 buckle up pup https://t.co/dzZYx2NByW https://twitter.com/dog_rates/status/671891728106971137/photo/1 11 10 Mojo
2025 671882082306625538 2015-12-02 02:42:26 Twitter for iPhone This is Batdog. He's sleeping now but when he wakes up he'll fight crime and such. Great tongue. 11/10 for Batdog https://t.co/Clg16EVy9O https://twitter.com/dog_rates/status/671882082306625538/photo/1 11 10 Batdog
2026 671879137494245376 2015-12-02 02:30:43 Twitter for iPhone This is Brad. He's a chubby lil pup. Doesn't really need the food he's trying to reach. 5/10 you've had enough Brad https://t.co/vPXKSaNsbE https://twitter.com/dog_rates/status/671879137494245376/photo/1 5 10 Brad
2027 671874878652489728 2015-12-02 02:13:48 Twitter for iPhone This is Mia. She was specifically told not get on top of the hutch or play in the fridge. 10/10 what a rebel https://t.co/3J7wkwW4FG https://twitter.com/dog_rates/status/671874878652489728/photo/1,https://twitter.com/dog_rates/status/671874878652489728/photo/1 10 10 Mia
2028 671866342182637568 2015-12-02 01:39:53 Twitter for iPhone Meet Dylan. He can use a fork but clearly can't put on a sweatshirt correctly. Looks like a disgruntled teen. 10/10 https://t.co/FWJQ1zQLiI https://twitter.com/dog_rates/status/671866342182637568/photo/1 10 10 Dylan
2029 671855973984772097 2015-12-02 00:58:41 Twitter for iPhone Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with https://t.co/gpWLdbposg https://twitter.com/dog_rates/status/671855973984772097/photo/1 8 10 NaN
2030 671789708968640512 2015-12-01 20:35:22 Twitter for iPhone This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq https://twitter.com/dog_rates/status/671789708968640512/photo/1 13 10 space
2031 671768281401958400 2015-12-01 19:10:13 Twitter for iPhone When you try to recreate the scene from Lady &amp; The Tramp but then remember you don't have a significant other. 10/10 https://t.co/TASnD8Q08S https://twitter.com/dog_rates/status/671768281401958400/photo/1,https://twitter.com/dog_rates/status/671768281401958400/photo/1 10 10 NaN
2032 671763349865160704 2015-12-01 18:50:38 Twitter for iPhone Say hello to Mark. He's a good dog. Always ready to go for a walk. Excellent posture. 9/10 keep it up Mark https://t.co/m9NleZ1i80 https://twitter.com/dog_rates/status/671763349865160704/photo/1 9 10 Mark
2033 671744970634719232 2015-12-01 17:37:36 Twitter for iPhone Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle https://t.co/wwwYO9C9kl https://twitter.com/dog_rates/status/671744970634719232/photo/1 6 10 NaN
2034 671743150407421952 2015-12-01 17:30:22 Twitter for iPhone This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 https://twitter.com/dog_rates/status/671743150407421952/photo/1 11 10 NaN
2035 671735591348891648 2015-12-01 17:00:19 Twitter for iPhone This is Oscar. He's ready for Christmas. 11/10 https://t.co/TON0Irzgwr https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1 11 10 Oscar
2037 671561002136281088 2015-12-01 05:26:34 Twitter for iPhone This is the best thing I've ever seen so spread it like wildfire &amp; maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU https://twitter.com/dog_rates/status/671561002136281088/photo/1 13 10 NaN
2039 671547767500775424 2015-12-01 04:33:59 Twitter for iPhone This is Marley. She chews shoes then feels extremely guilty about it and refuses to look at them. 10/10 https://t.co/f99MV0htAV https://twitter.com/dog_rates/status/671547767500775424/photo/1,https://twitter.com/dog_rates/status/671547767500775424/photo/1 10 10 Marley
2040 671544874165002241 2015-12-01 04:22:29 Twitter for iPhone Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 https://t.co/QVaEMsB9tS https://twitter.com/dog_rates/status/671544874165002241/photo/1 6 10 NaN
2041 671542985629241344 2015-12-01 04:14:59 Twitter for iPhone This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF https://twitter.com/dog_rates/status/671542985629241344/photo/1 10 10 JD
2042 671538301157904385 2015-12-01 03:56:22 Twitter for iPhone This is Baxter. He's very calm. Hasn't eaten in weeks tho. Not good at fetch. Never blinks. 8/10 would still pet https://t.co/fUuiyu2QTD https://twitter.com/dog_rates/status/671538301157904385/photo/1 8 10 Baxter
2043 671536543010570240 2015-12-01 03:49:23 Twitter for iPhone This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy https://t.co/1U5Ro5FA4c https://twitter.com/dog_rates/status/671536543010570240/photo/1 9 10 Reginald
2044 671533943490011136 2015-12-01 03:39:03 Twitter for iPhone Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup https://t.co/pcx8jm1J1K https://twitter.com/dog_rates/status/671533943490011136/photo/1 6 10 NaN
2045 671528761649688577 2015-12-01 03:18:27 Twitter for iPhone Meet Jax. He's in the middle of a serious conversation and is trying unbelievably hard not to laugh. 10/10 https://t.co/HwiLcDPaCi https://twitter.com/dog_rates/status/671528761649688577/photo/1 10 10 Jax
2046 671520732782923777 2015-12-01 02:46:33 Twitter for iPhone Meet Alejandro. He's an extremely seductive pup. 10/10 https://t.co/C7dPcCUNpF https://twitter.com/dog_rates/status/671520732782923777/photo/1 10 10 Alejandro
2047 671518598289059840 2015-12-01 02:38:04 Twitter for iPhone This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers https://t.co/nLQoltwEZ7 https://twitter.com/dog_rates/status/671518598289059840/photo/1 9 10 Scruffers
2048 671511350426865664 2015-12-01 02:09:16 Twitter for iPhone Say hello to Hammond. He's just a wee lil pup. Jumps around a shit ton. 8/10 overall very good dog https://t.co/OgDF2ES3Q9 https://twitter.com/dog_rates/status/671511350426865664/photo/1 8 10 Hammond
2049 671504605491109889 2015-12-01 01:42:28 Twitter for iPhone This is Charlie. He was just informed that dogs can't be Jedi. 11/10 https://t.co/mGW5c50mPA https://twitter.com/dog_rates/status/671504605491109889/photo/1,https://twitter.com/dog_rates/status/671504605491109889/photo/1 11 10 Charlie
2050 671497587707535361 2015-12-01 01:14:35 Twitter for iPhone This is Pip. He is a ship captain. Many years of experience sailing the treacherous open sea. 11/10 https://t.co/EY1uZJUGYJ https://twitter.com/dog_rates/status/671497587707535361/photo/1 11 10 Pip
2051 671488513339211776 2015-12-01 00:38:31 Twitter for iPhone This is Julius. He's a cool dog. Carries seashell everywhere. Rad segmented legs. Currently attacking castle. 8/10 https://t.co/CwUK5AIgeD https://twitter.com/dog_rates/status/671488513339211776/photo/1 8 10 Julius
2052 671486386088865792 2015-12-01 00:30:04 Twitter for iPhone This is Malcolm. He just saw a spider. 10/10 https://t.co/ympkwF65Dx https://twitter.com/dog_rates/status/671486386088865792/photo/1 10 10 Malcolm
2053 671485057807351808 2015-12-01 00:24:48 Twitter for iPhone Meet Penelope. She is a white Macadamias Duodenum. Very excited about wall. Lives on Frosted Flakes. 11/10 good pup https://t.co/CqcRagJlyS https://twitter.com/dog_rates/status/671485057807351808/photo/1 11 10 Penelope
2054 671390180817915904 2015-11-30 18:07:47 Twitter for iPhone Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet https://t.co/U1mSS3Ykez https://twitter.com/dog_rates/status/671390180817915904/photo/1 7 10 NaN
2055 671362598324076544 2015-11-30 16:18:11 Twitter for iPhone This is Tanner. He accidentally dropped all his hard-earned Kohl's cash in the tub. 11/10 https://t.co/onC3uMpFF2 https://twitter.com/dog_rates/status/671362598324076544/photo/1 11 10 Tanner
2056 671357843010908160 2015-11-30 15:59:17 Twitter for iPhone Tfw she says hello from the other side. 9/10 https://t.co/lS1TIDagIb https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1 9 10 NaN
2057 671355857343524864 2015-11-30 15:51:24 Twitter for iPhone This is Lou. He's a Petrarch Sunni Pinto. Well-behaved pup. Little legs just hang there. 10/10 would pet firmly https://t.co/FoCULrC3rD https://twitter.com/dog_rates/status/671355857343524864/photo/1 10 10 Lou
2058 671347597085433856 2015-11-30 15:18:34 Twitter for iPhone This is Lola. She was not fully prepared for the water slide. 9/10 https://t.co/svlkUlg3NH https://twitter.com/dog_rates/status/671347597085433856/photo/1,https://twitter.com/dog_rates/status/671347597085433856/photo/1 9 10 Lola
2059 671186162933985280 2015-11-30 04:37:05 Twitter for iPhone This is Sparky. That's his pancake now. He will raise it as his own. 10/10 https://t.co/96tMaWyoWt https://twitter.com/dog_rates/status/671186162933985280/photo/1 10 10 Sparky
2060 671182547775299584 2015-11-30 04:22:44 Twitter for iPhone This pup holds the secrets of the universe in his left eye. 12/10 https://t.co/F7xwE0wmnu https://twitter.com/dog_rates/status/671182547775299584/photo/1 12 10 NaN
2061 671166507850801152 2015-11-30 03:18:59 Twitter for iPhone This is Herm. It's his first day of potty training. He's doing great. You got this Herm. 10/10 stellar pup https://t.co/gFl60yFJ0w https://twitter.com/dog_rates/status/671166507850801152/photo/1 10 10 Herm
2062 671163268581498880 2015-11-30 03:06:07 Twitter for iPhone Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all https://t.co/U7DQQdZ0mX https://twitter.com/dog_rates/status/671163268581498880/photo/1 8 10 NaN
2063 671159727754231808 2015-11-30 02:52:03 Twitter for iPhone This is Anthony. He just finished up his masters at Harvard. Unprofessional tattoos. Always looks perturbed. 5/10 https://t.co/iHLo9rGay1 https://twitter.com/dog_rates/status/671159727754231808/photo/1 5 10 Anthony
2064 671154572044468225 2015-11-30 02:31:34 Twitter for iPhone Meet Holly. She's trying to teach small human-like pup about blocks but he's not paying attention smh. 11/10 &amp; 8/10 https://t.co/RcksaUrGNu https://twitter.com/dog_rates/status/671154572044468225/photo/1 11 10 Holly
2065 671151324042559489 2015-11-30 02:18:39 Twitter for iPhone *struggling to breathe properly* 12/10 https://t.co/NKHx0pcOii https://twitter.com/dog_rates/status/671151324042559489/photo/1 12 10 NaN
2066 671147085991960577 2015-11-30 02:01:49 Twitter for iPhone This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr https://twitter.com/dog_rates/status/671147085991960577/photo/1 9 10 NaN
2067 671141549288370177 2015-11-30 01:39:49 Twitter for iPhone Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable https://t.co/HYR611wiA4 https://twitter.com/dog_rates/status/671141549288370177/photo/1 9 10 NaN
2068 671138694582165504 2015-11-30 01:28:28 Twitter for iPhone Me running from commitment. 10/10 https://t.co/ycVJyFFkES https://twitter.com/dog_rates/status/671138694582165504/photo/1 10 10 NaN
2069 671134062904504320 2015-11-30 01:10:04 Twitter for iPhone Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY https://twitter.com/dog_rates/status/671134062904504320/photo/1 8 10 Clarence
2070 671122204919246848 2015-11-30 00:22:57 Twitter for iPhone Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s https://t.co/WzVLdSHJU7 https://twitter.com/dog_rates/status/671122204919246848/photo/1 4 10 NaN
2071 671115716440031232 2015-11-29 23:57:10 Twitter for iPhone Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 https://t.co/mZD7Bo7HfV https://twitter.com/dog_rates/status/671115716440031232/photo/1 6 10 Phred
2072 671109016219725825 2015-11-29 23:30:32 Twitter for iPhone This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby https://t.co/sYi2G0he4H https://twitter.com/dog_rates/status/671109016219725825/photo/1 8 10 Toby
2073 670995969505435648 2015-11-29 16:01:20 Twitter for iPhone Yea I can't handle this job anymore your dogs are too adorable. 12/10 https://t.co/N9W5L7BLTm https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1 12 10 NaN
2074 670842764863651840 2015-11-29 05:52:33 Twitter for iPhone After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY https://twitter.com/dog_rates/status/670842764863651840/photo/1 420 10 NaN
2075 670840546554966016 2015-11-29 05:43:44 Twitter for iPhone Meet Colby. He's that one cool friend that gets you into every party. Great hat. Sneaky tongue slip. 10/10 good pup https://t.co/jBnz3MjTzX https://twitter.com/dog_rates/status/670840546554966016/photo/1 10 10 Colby
2076 670838202509447168 2015-11-29 05:34:25 Twitter for iPhone Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet https://t.co/QY5uvMmmQk https://twitter.com/dog_rates/status/670838202509447168/photo/1 4 10 NaN
2077 670833812859932673 2015-11-29 05:16:59 Twitter for iPhone This is Jett. He is unimpressed by flower. 7/10 https://t.co/459qWNnV3F https://twitter.com/dog_rates/status/670833812859932673/photo/1 7 10 Jett
2078 670832455012716544 2015-11-29 05:11:35 Twitter for iPhone This is Amy. She is Queen Starburst. 10/10 unexplainably juicy https://t.co/Hj2HtxpcSx https://twitter.com/dog_rates/status/670832455012716544/photo/1 10 10 Amy
2079 670826280409919488 2015-11-29 04:47:03 Twitter for iPhone Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 https://t.co/XOPXCSXiUT https://twitter.com/dog_rates/status/670826280409919488/photo/1 2 10 NaN
2080 670823764196741120 2015-11-29 04:37:03 Twitter for iPhone This is Remington. He's a man dime. 12/10 https://t.co/m3ufSDwHHJ https://twitter.com/dog_rates/status/670823764196741120/photo/1 12 10 Remington
2081 670822709593571328 2015-11-29 04:32:51 Twitter for iPhone Can't do better than this lol. 10/10 for the owner https://t.co/yrqGyMZhW6 https://twitter.com/dog_rates/status/670822709593571328/photo/1 10 10 NaN
2082 670815497391357952 2015-11-29 04:04:12 Twitter for iPhone This is Sage. He likes to burn shit. 10/10 https://t.co/nLYruSMRe6 https://twitter.com/dog_rates/status/670815497391357952/photo/1 10 10 Sage
2083 670811965569282048 2015-11-29 03:50:10 Twitter for iPhone Meet Maggie. She enjoys her stick in the yard. Very content. Much tranquility. 10/10 keep it up pup https://t.co/eYP9i9gfYn https://twitter.com/dog_rates/status/670811965569282048/photo/1 10 10 Maggie
2084 670807719151067136 2015-11-29 03:33:17 Twitter for iPhone Say hello to Andy. He can balance on one foot, obliterate u in checkers, &amp; transform into a rug. 11/10 much talents https://t.co/idzH8JH06g https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1 11 10 Andy
2085 670804601705242624 2015-11-29 03:20:54 Twitter for iPhone Meet Mason. He's a total frat boy. Pretends to be Hawaiian. Head is unbelievably round. 10/10 would pet so damn well https://t.co/DM3ZP3AA7b https://twitter.com/dog_rates/status/670804601705242624/photo/1 10 10 Mason
2086 670803562457407488 2015-11-29 03:16:46 Twitter for iPhone I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 https://t.co/9ZuGAmLZDR https://twitter.com/dog_rates/status/670803562457407488/photo/1 10 10 NaN
2087 670797304698376195 2015-11-29 02:51:54 Twitter for iPhone This is Trigger. He was minding his own business on stair when he overheard someone say they don't like bacon. 11/10 https://t.co/yqohZK4CL0 https://twitter.com/dog_rates/status/670797304698376195/photo/1 11 10 Trigger
2088 670792680469889025 2015-11-29 02:33:32 Twitter for iPhone This is Antony. He's a Sheraton Tetrahedron. Skips awkwardly. Doesn't look when he crosses the road (reckless). 7/10 https://t.co/gTy4WMXu8l https://twitter.com/dog_rates/status/670792680469889025/photo/1 7 10 Antony
2089 670789397210615808 2015-11-29 02:20:29 Twitter for iPhone Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once https://t.co/RGcNPsmAfY https://twitter.com/dog_rates/status/670789397210615808/photo/1 9 10 NaN
2090 670786190031921152 2015-11-29 02:07:44 Twitter for iPhone This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 https://t.co/3r7wznfuoa https://twitter.com/dog_rates/status/670786190031921152/photo/1 8 10 Creg
2091 670783437142401025 2015-11-29 01:56:48 Twitter for iPhone Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 https://t.co/jxukeh2BeO https://twitter.com/dog_rates/status/670783437142401025/photo/1 1 10 NaN
2092 670782429121134593 2015-11-29 01:52:48 Twitter for iPhone This dude slaps your girl's ass what do you do?\n5/10 https://t.co/6dioUL6gcP https://twitter.com/dog_rates/status/670782429121134593/photo/1 5 10 NaN
2093 670780561024270336 2015-11-29 01:45:22 Twitter for iPhone This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all https://t.co/Viu56hVhhP https://twitter.com/dog_rates/status/670780561024270336/photo/1 7 10 Traviss
2094 670778058496974848 2015-11-29 01:35:26 Twitter for iPhone "To bone or not to bone?"\n10/10 https://t.co/4g5kFdxp6g https://twitter.com/dog_rates/status/670778058496974848/photo/1 10 10 NaN
2095 670764103623966721 2015-11-29 00:39:59 Twitter for iPhone Meet Vincent. He's a wild Adderall Cayenne. Shipped for free. Always fresh. Never frozen. 10/10 great purchase https://t.co/ZfS7chSsi7 https://twitter.com/dog_rates/status/670764103623966721/photo/1 10 10 Vincent
2096 670755717859713024 2015-11-29 00:06:39 Twitter for iPhone Say hello to Gin &amp; Tonic. They're having a staring contest. Very very intense. 9/10 for both https://t.co/F6bI9dF16E https://twitter.com/dog_rates/status/670755717859713024/photo/1 9 10 Gin
2097 670733412878163972 2015-11-28 22:38:01 Twitter for iPhone This is Jerry. He's a great listener. Low maintenance. Hard to get leash on tho. 8/10 still good dog https://t.co/NsDIt8Z80Z https://twitter.com/dog_rates/status/670733412878163972/photo/1 8 10 Jerry
2098 670727704916926465 2015-11-28 22:15:21 Twitter for iPhone This is Jeffrie. He's a handheld pup. Excellent ears. Super fluffy. 10/10 overall topnotch canine https://t.co/SWnrQAFOtt https://twitter.com/dog_rates/status/670727704916926465/photo/1 10 10 Jeffrie
2099 670717338665226240 2015-11-28 21:34:09 Twitter for iPhone *screams for a little bit and then crumples to the floor shaking* 12/10 https://t.co/W2MCt9pTed https://twitter.com/dog_rates/status/670717338665226240/photo/1 12 10 NaN
2100 670704688707301377 2015-11-28 20:43:53 Twitter for iPhone Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible https://t.co/I1lMUy1FqH https://twitter.com/dog_rates/status/670704688707301377/photo/1 6 10 Danny
2101 670691627984359425 2015-11-28 19:51:59 Twitter for iPhone This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 https://t.co/eCVj2xT59V https://twitter.com/dog_rates/status/670691627984359425/photo/1 8 10 Ester
2102 670679630144274432 2015-11-28 19:04:19 Twitter for iPhone This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 https://t.co/HMcD9SLOAN https://twitter.com/dog_rates/status/670679630144274432/photo/1 8 10 Pluto
2103 670676092097810432 2015-11-28 18:50:15 Twitter for iPhone This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 https://t.co/IAc1QCczMc https://twitter.com/dog_rates/status/670676092097810432/photo/1 8 10 Bloo
2104 670668383499735048 2015-11-28 18:19:37 Twitter for iPhone This is Phineas. He's a magical dog. Only appears through the hole of a donut. 10/10 mysterious pup https://t.co/NECxEHN5YU https://twitter.com/dog_rates/status/670668383499735048/photo/1 10 10 Phineas
2105 670474236058800128 2015-11-28 05:28:09 Twitter for iPhone Honor to rate this dog. Great teeth. Nice horns. Unbelievable posture. Fun to pet. Big enough to ride. 10/10 rad dog https://t.co/7JMAHdJ6A4 https://twitter.com/dog_rates/status/670474236058800128/photo/1 10 10 NaN
2106 670468609693655041 2015-11-28 05:05:47 Twitter for iPhone This is Edd. He's a Czechoslovakian Googolplex Merlot. Ready for Christmas. Take that Starbucks. Very poised. 10/10 https://t.co/dupWSIpSrG https://twitter.com/dog_rates/status/670468609693655041/photo/1 10 10 Edd
2107 670465786746662913 2015-11-28 04:54:34 Twitter for iPhone Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 https://t.co/2BnCLtJMxD https://twitter.com/dog_rates/status/670465786746662913/photo/1 7 10 NaN
2108 670452855871037440 2015-11-28 04:03:11 Twitter for iPhone This dog can't see its haters. 11/10 https://t.co/35BcGFdEAK https://twitter.com/dog_rates/status/670452855871037440/photo/1 11 10 NaN
2109 670449342516494336 2015-11-28 03:49:14 Twitter for iPhone Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup https://t.co/cixC0M3P1e https://twitter.com/dog_rates/status/670449342516494336/photo/1 5 10 NaN
2110 670444955656130560 2015-11-28 03:31:48 Twitter for iPhone This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq https://twitter.com/dog_rates/status/670444955656130560/photo/1 10 10 Paull
2111 670442337873600512 2015-11-28 03:21:24 Twitter for iPhone Meet Koda. He's large. Looks very soft. Great bangs. Powerful owner. 11/10 would pet the hell out of https://t.co/mzPoS9wCqp https://twitter.com/dog_rates/status/670442337873600512/photo/1 11 10 Koda
2112 670435821946826752 2015-11-28 02:55:30 Twitter for iPhone Two unbelievably athletic dogs here. Great form. Perfect execution. 10/10 for both https://t.co/sQuKwSKtDE https://twitter.com/dog_rates/status/670435821946826752/photo/1 10 10 NaN
2113 670434127938719744 2015-11-28 02:48:46 Twitter for iPhone Meet Hank and Sully. Hank is very proud of the pumpkin they found and Sully doesn't give a shit. 11/10 and 8/10 https://t.co/cwoP1ftbrj https://twitter.com/dog_rates/status/670434127938719744/photo/1 11 10 Hank
2114 670433248821026816 2015-11-28 02:45:17 Twitter for iPhone This is Sam. He's trying to escape the inordinate monotony of conforming to everyday status quo. 10/10 https://t.co/PXnCdz8qzK https://twitter.com/dog_rates/status/670433248821026816/photo/1 10 10 Sam
2115 670428280563085312 2015-11-28 02:25:32 Twitter for iPhone This is Willy. He's millennial af. 11/10 https://t.co/Fm1SvVLsad https://twitter.com/dog_rates/status/670428280563085312/photo/1 11 10 Willy
2116 670427002554466305 2015-11-28 02:20:27 Twitter for iPhone This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute https://t.co/CtuJoLHiDo https://twitter.com/dog_rates/status/670427002554466305/photo/1 9 10 NaN
2117 670421925039075328 2015-11-28 02:00:17 Twitter for iPhone Meet Herb. 12/10 https://t.co/tLRyYvCci3 https://twitter.com/dog_rates/status/670421925039075328/photo/1 12 10 Herb
2118 670420569653809152 2015-11-28 01:54:54 Twitter for iPhone This is Damon. The newest presidential candidate for 2016. 10/10 he gets my vote https://t.co/Z5nqlfjYJi https://twitter.com/dog_rates/status/670420569653809152/photo/1 10 10 Damon
2119 670417414769758208 2015-11-28 01:42:22 Twitter for iPhone Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho https://t.co/Dfv2YaHPMn https://twitter.com/dog_rates/status/670417414769758208/photo/1 6 10 NaN
2120 670411370698022913 2015-11-28 01:18:21 Twitter for iPhone Meet Scooter. He's ready for his first day of middle school. Remarkable tongue. 12/10 https://t.co/1DJfHmfBQN https://twitter.com/dog_rates/status/670411370698022913/photo/1 12 10 Scooter
2121 670408998013820928 2015-11-28 01:08:55 Twitter for iPhone This is Peanut. He was the World Table Tennis Champion back in 2003. Now he just does it for recreation. 10/10 https://t.co/LXVEHo9JMY https://twitter.com/dog_rates/status/670408998013820928/photo/1 10 10 Peanut
2122 670403879788544000 2015-11-28 00:48:35 Twitter for iPhone This is Nigel. He accidentally popped his ball after dunking so hard the backboard shattered. 10/10 great great pup https://t.co/vSd1TWFK1I https://twitter.com/dog_rates/status/670403879788544000/photo/1 10 10 Nigel
2123 670385711116361728 2015-11-27 23:36:23 Twitter for iPhone Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 https://t.co/MAZx8MPF0S https://twitter.com/dog_rates/status/670385711116361728/photo/1 8 10 Larry
2124 670374371102445568 2015-11-27 22:51:19 Twitter for iPhone Meet Daisy. She's rebellious. Full of teen angst. Thought her food should be evenly dispersed around the room. 12/10 https://t.co/8yzgYzP94K https://twitter.com/dog_rates/status/670374371102445568/photo/1 12 10 Daisy
2125 670361874861563904 2015-11-27 22:01:40 Twitter for iPhone This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 https://t.co/98ZBi6o4dj https://twitter.com/dog_rates/status/670361874861563904/photo/1 9 10 NaN
2126 670338931251150849 2015-11-27 20:30:30 Twitter for iPhone This is Butters. He's not ready for Thanksgiving to be over. 10/10 poor Butters https://t.co/iTc578yDmY https://twitter.com/dog_rates/status/670338931251150849/photo/1 10 10 Butters
2127 670319130621435904 2015-11-27 19:11:49 Twitter for iPhone AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA https://twitter.com/dog_rates/status/670319130621435904/photo/1 11 10 NaN
2128 670303360680108032 2015-11-27 18:09:09 Twitter for iPhone This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN https://twitter.com/dog_rates/status/670303360680108032/photo/1 9 10 NaN
2129 670290420111441920 2015-11-27 17:17:44 Twitter for iPhone This is Sandra. She's going skydiving. Nice adidas sandals. Stellar house plant. 11/10 https://t.co/orbkAq9kYF https://twitter.com/dog_rates/status/670290420111441920/photo/1 11 10 Sandra
2130 670093938074779648 2015-11-27 04:16:59 Twitter for iPhone This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 https://t.co/vYs9IVzHY9 https://twitter.com/dog_rates/status/670093938074779648/photo/1 9 10 Wally
2131 670086499208155136 2015-11-27 03:47:25 Twitter for iPhone "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 https://t.co/DuQXATW27f https://twitter.com/dog_rates/status/670086499208155136/photo/1 10 10 NaN
2132 670079681849372674 2015-11-27 03:20:20 Twitter for iPhone Meet Fabio. He's a wonderful pup. Can't stay away from the devil's lettuce but other than that he's a delight. 10/10 https://t.co/Qvj4JZGdQD https://twitter.com/dog_rates/status/670079681849372674/photo/1 10 10 Fabio
2133 670073503555706880 2015-11-27 02:55:47 Twitter for iPhone Meet Winston. He wants to be a power drill. Very focused. 10/10 I believe in you Winston https://t.co/exGrzT9O88 https://twitter.com/dog_rates/status/670073503555706880/photo/1 10 10 Winston
2134 670069087419133954 2015-11-27 02:38:14 Twitter for iPhone This is Randall. He's from Chernobyl. Built playground himself. Has been stuck up there quite a while. 5/10 good dog https://t.co/pzrvc7wKGd https://twitter.com/dog_rates/status/670069087419133954/photo/1 5 10 Randall
2135 670061506722140161 2015-11-27 02:08:07 Twitter for iPhone This is Liam. He has a particular set of skills. He will look for you, he will find you, and he will kill you. 11/10 https://t.co/uQMFKv1vjn https://twitter.com/dog_rates/status/670061506722140161/photo/1 11 10 Liam
2136 670055038660800512 2015-11-27 01:42:24 Twitter for iPhone This is Tommy. He's a cool dog. Hard not to step on. Won't let go of seashell. Not fast by any means. 3/10 https://t.co/0gY6XTOpn3 https://twitter.com/dog_rates/status/670055038660800512/photo/1 3 10 Tommy
2137 670046952931721218 2015-11-27 01:10:17 Twitter for iPhone This is Ben &amp; Carson. It's impossible for them to tilt their heads in the same direction. Cheeky wink by Ben. 11/10s https://t.co/465sIBdvzU https://twitter.com/dog_rates/status/670046952931721218/photo/1 11 10 Ben
2138 670040295598354432 2015-11-27 00:43:49 Twitter for iPhone 😂😂😂 10/10 for the dog and the owner https://t.co/5iYF0Ci0EK https://twitter.com/dog_rates/status/670040295598354432/photo/1 10 10 NaN
2139 670037189829525505 2015-11-27 00:31:29 Twitter for iPhone Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable https://t.co/rOTOteKx4q https://twitter.com/dog_rates/status/670037189829525505/photo/1 5 10 NaN
2140 670003130994700288 2015-11-26 22:16:09 Twitter for iPhone This is Raphael. He is a Baskerville Conquistador. Entertains at all the gatherings. 10/10 simply magnificent https://t.co/3NTykJmtHt https://twitter.com/dog_rates/status/670003130994700288/photo/1 10 10 Raphael
2141 669993076832759809 2015-11-26 21:36:12 Twitter for iPhone This is Zoey. Her dreams of becoming a hippo ballerina don't look promising. 9/10 it'll be ok puppers https://t.co/kR1fqy4NKK https://twitter.com/dog_rates/status/669993076832759809/photo/1 9 10 Zoey
2142 669972011175813120 2015-11-26 20:12:29 Twitter for iPhone Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once https://t.co/A6XnvxHiUQ https://twitter.com/dog_rates/status/669972011175813120/photo/1 10 10 NaN
2143 669970042633789440 2015-11-26 20:04:40 Twitter for iPhone This is Julio. He was one of the original Ringling Bros. Exceptional balance. Very alert. Ready for anything. 10/10 https://t.co/aeURGO9Qs8 https://twitter.com/dog_rates/status/669970042633789440/photo/1 10 10 Julio
2144 669942763794931712 2015-11-26 18:16:16 Twitter for iPhone This is Andru. He made his very own lacrosse stick. Much dedication. Big dreams. Tongue slip. 11/10 go get em Andru https://t.co/1VJoY3OJ1F https://twitter.com/dog_rates/status/669942763794931712/photo/1 11 10 Andru
2145 669926384437997569 2015-11-26 17:11:11 Twitter for iPhone I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute https://t.co/9RYY2NtHDw https://twitter.com/dog_rates/status/669926384437997569/photo/1 12 10 NaN
2146 669923323644657664 2015-11-26 16:59:01 Twitter for iPhone This is a spotted Lipitor Rumpelstiltskin named Alphred. He can't wait for the Turkey. 10/10 would pet really well https://t.co/6GUGO7azNX https://twitter.com/dog_rates/status/669923323644657664/photo/1 10 10 NaN
2147 669753178989142016 2015-11-26 05:42:55 Twitter for iPhone Meet Chester. He just ate a lot and now he can't move. 10/10 that's going to be me in about 17 hours https://t.co/63jh1tYZa5 https://twitter.com/dog_rates/status/669753178989142016/photo/1 10 10 Chester
2148 669749430875258880 2015-11-26 05:28:02 Twitter for iPhone Say hello to Clarence. Clarence thought he saw a squirrel. He was just trying to help. 8/10 poor Clarence https://t.co/tbFaTUHLJB https://twitter.com/dog_rates/status/669749430875258880/photo/1 8 10 Clarence
2150 669683899023405056 2015-11-26 01:07:38 Twitter for iPhone This is Kloey. Her mother was a unicorn. 10/10 https://t.co/NvKJRYDosA https://twitter.com/dog_rates/status/669683899023405056/photo/1 10 10 Kloey
2151 669682095984410625 2015-11-26 01:00:28 Twitter for iPhone Meet Louie. He just pounded that bottle of wine. 9/10 goodnight Louie https://t.co/RAwZvMKRZB https://twitter.com/dog_rates/status/669682095984410625/photo/1 9 10 Louie
2152 669680153564442624 2015-11-26 00:52:45 Twitter for iPhone This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole https://t.co/IQFZKNUlXx https://twitter.com/dog_rates/status/669680153564442624/photo/1 8 10 Shawwn
2153 669661792646373376 2015-11-25 23:39:47 Twitter for iPhone This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 https://t.co/ODnILTr4QM https://twitter.com/dog_rates/status/669661792646373376/photo/1 5 10 NaN
2154 669625907762618368 2015-11-25 21:17:12 Twitter for iPhone This is Penny. She's having fun AND being safe. 12/10 very responsible pup https://t.co/eqeWw67oU7 https://twitter.com/dog_rates/status/669625907762618368/photo/1 12 10 Penny
2155 669603084620980224 2015-11-25 19:46:30 Twitter for iPhone Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 https://t.co/MSIbWu4YYs https://twitter.com/dog_rates/status/669603084620980224/photo/1 10 10 NaN
2156 669597912108789760 2015-11-25 19:25:57 Twitter for iPhone This is Skye. He is a Bretwaldian Altostratus. Not amused at all. Just saved small dog from avalanche. 10/10 hero af https://t.co/XmCvma01fF https://twitter.com/dog_rates/status/669597912108789760/photo/1 10 10 Skye
2157 669583744538451968 2015-11-25 18:29:39 Twitter for iPhone Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet https://t.co/f8GXeDbFzu https://twitter.com/dog_rates/status/669583744538451968/photo/1 6 10 NaN
2158 669573570759163904 2015-11-25 17:49:14 Twitter for iPhone This is Linda. She just looked up and saw you glancing at your neighboring classmate's test. 10/10 https://t.co/UpFFYhA1Id https://twitter.com/dog_rates/status/669573570759163904/photo/1 10 10 Linda
2159 669571471778410496 2015-11-25 17:40:53 Twitter for iPhone This is Keith. He's had 13 DUIs. 7/10 that's too many Keith https://t.co/fa7olwrF9Y https://twitter.com/dog_rates/status/669571471778410496/photo/1 7 10 Keith
2160 669567591774625800 2015-11-25 17:25:28 Twitter for iPhone Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 https://t.co/XPLB3eoXiX https://twitter.com/dog_rates/status/669567591774625800/photo/1 9 10 Kollin
2161 669564461267722241 2015-11-25 17:13:02 Twitter for iPhone This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl https://twitter.com/dog_rates/status/669564461267722241/photo/1 10 10 NaN
2162 669393256313184256 2015-11-25 05:52:43 Twitter for iPhone Meet Ronduh. She's a Finnish Checkered Blitzkrieg. Ears look fake. Shoes on point. 10/10 would pet extra well https://t.co/juktj5qiaD https://twitter.com/dog_rates/status/669393256313184256/photo/1 10 10 Ronduh
2163 669375718304980992 2015-11-25 04:43:02 Twitter for iPhone This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl https://t.co/ero0XfdGtY https://twitter.com/dog_rates/status/669375718304980992/photo/1 6 10 Billl
2164 669371483794317312 2015-11-25 04:26:12 Twitter for iPhone This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk https://twitter.com/dog_rates/status/669371483794317312/photo/1 10 10 Oliviér
2165 669367896104181761 2015-11-25 04:11:57 Twitter for iPhone This is Chip. Chip's pretending to be choked. 10/10 lol classic Chip https://t.co/yoB0SM1AAP https://twitter.com/dog_rates/status/669367896104181761/photo/1 10 10 Chip
2166 669363888236994561 2015-11-25 03:56:01 Twitter for iPhone Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend https://t.co/jPkd7hhX7m https://twitter.com/dog_rates/status/669363888236994561/photo/1 10 10 NaN
2167 669359674819481600 2015-11-25 03:39:17 Twitter for iPhone Meet Saydee. She's a Rochester Ecclesiastical. Jumped off cliff and caught stick on way down. 11/10 1st round pick https://t.co/Eh2v0AyJbi https://twitter.com/dog_rates/status/669359674819481600/photo/1 11 10 Saydee
2168 669354382627049472 2015-11-25 03:18:15 Twitter for iPhone Meet Dug. Dug fucken loves peaches. 8/10 https://t.co/JtA1TG21Xx https://twitter.com/dog_rates/status/669354382627049472/photo/1 8 10 Dug
2170 669351434509529089 2015-11-25 03:06:32 Twitter for iPhone This is Sully. He's a Leviticus Galapagos. Very powerful. Borderline unstoppable. Cool goggles. 10/10 https://t.co/zKNF77dxEA https://twitter.com/dog_rates/status/669351434509529089/photo/1 10 10 Sully
2171 669328503091937280 2015-11-25 01:35:25 Twitter for iPhone This is Kirk. He just saw a bacon wrapped tennis ball and literally died. So sad. 12/10 RIP Kirk https://t.co/0twoigv5jP https://twitter.com/dog_rates/status/669328503091937280/photo/1 12 10 Kirk
2172 669327207240699904 2015-11-25 01:30:16 Twitter for iPhone Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all https://t.co/6WGFp9cuj6 https://twitter.com/dog_rates/status/669327207240699904/photo/1 13 10 NaN
2173 669324657376567296 2015-11-25 01:20:08 Twitter for iPhone Meet Ralf. He's a miniature Buick DiCaprio. Can float (whoa). Loves to beach. Snazzy green vest. 11/10 I'd hug Ralf https://t.co/R5Z6jBTdhc https://twitter.com/dog_rates/status/669324657376567296/photo/1 11 10 Ralf
2174 669216679721873412 2015-11-24 18:11:04 Twitter for iPhone This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly https://t.co/d8ybynaRwZ https://twitter.com/dog_rates/status/669216679721873412/photo/1 8 10 Clarq
2175 669214165781868544 2015-11-24 18:01:05 Twitter for iPhone This is Jaspers. He is a northeastern Gillette. Just got his license. Very excited. 10/10 they grow up so fast https://t.co/cieaOI0RuT https://twitter.com/dog_rates/status/669214165781868544/photo/1 10 10 Jaspers
2176 669203728096960512 2015-11-24 17:19:36 Twitter for iPhone This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy https://t.co/HPoce45SI3 https://twitter.com/dog_rates/status/669203728096960512/photo/1 9 10 Samsom
2177 669037058363662336 2015-11-24 06:17:19 Twitter for iPhone Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 &amp; 7/10 https://t.co/Lh1BsJrWPp https://twitter.com/dog_rates/status/669037058363662336/photo/1 10 10 NaN
2178 669015743032369152 2015-11-24 04:52:37 Twitter for iPhone Super rare dog right here guys. Doesn't bark. Seems strong. Blue. Very family friendly pet. 10/10 overall good dog https://t.co/Jykq2iq3qN https://twitter.com/dog_rates/status/669015743032369152/photo/1 10 10 NaN
2179 669006782128353280 2015-11-24 04:17:01 Twitter for iPhone This is Tucker. He is 100% ready for the sports. 12/10 I would watch anything with him https://t.co/k0ddVUWTcu https://twitter.com/dog_rates/status/669006782128353280/photo/1 12 10 Tucker
2180 669000397445533696 2015-11-24 03:51:38 Twitter for iPhone Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD https://twitter.com/dog_rates/status/669000397445533696/photo/1 11 10 Terrance
2181 668994913074286592 2015-11-24 03:29:51 Twitter for iPhone Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well https://t.co/w5oYFXi0uh https://twitter.com/dog_rates/status/668994913074286592/photo/1 5 10 NaN
2182 668992363537309700 2015-11-24 03:19:43 Twitter for iPhone This is Harrison. He braves the snow like a champ. Perched at all times. Hasn't blinked in months. 8/10 v nifty dog https://t.co/tiVuq6MNwl https://twitter.com/dog_rates/status/668992363537309700/photo/1 8 10 Harrison
2183 668989615043424256 2015-11-24 03:08:48 Twitter for iPhone This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh https://t.co/1zBp1moFlX https://twitter.com/dog_rates/status/668989615043424256/photo/1 3 10 Bernie
2184 668988183816871936 2015-11-24 03:03:06 Twitter for iPhone Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 https://t.co/bMhs18elNF https://twitter.com/dog_rates/status/668988183816871936/photo/1 7 10 NaN
2185 668986018524233728 2015-11-24 02:54:30 Twitter for iPhone This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 https://t.co/j0Wpa42KCH https://twitter.com/dog_rates/status/668986018524233728/photo/1 9 10 Ruby
2186 668981893510119424 2015-11-24 02:38:07 Twitter for iPhone Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner https://t.co/0EJXxE9UxW https://twitter.com/dog_rates/status/668981893510119424/photo/1 4 10 NaN
2187 668979806671884288 2015-11-24 02:29:49 Twitter for iPhone This is Chaz. He's an X Games half pipe superstar. 6 gold medals. Lost back legs saving a baby from a tornado 12/10 https://t.co/uxdOfblUB0 https://twitter.com/dog_rates/status/668979806671884288/photo/1 12 10 Chaz
2188 668975677807423489 2015-11-24 02:13:25 Twitter for iPhone This is Jeremy. He hasn't grown into his skin yet. Ears hit the floor. Probably trips on them sometimes. 11/10 https://t.co/LqAMlFVBoY https://twitter.com/dog_rates/status/668975677807423489/photo/1 11 10 Jeremy
2190 668960084974809088 2015-11-24 01:11:27 Twitter for iPhone Meet Jaycob. He got scared of the vacuum. Hide &amp; seek champ. Almost better than Kony. Solid shampoo selection. 10/10 https://t.co/952hUV6RiK https://twitter.com/dog_rates/status/668960084974809088/photo/1 10 10 Jaycob
2191 668955713004314625 2015-11-24 00:54:05 Twitter for iPhone This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 https://twitter.com/dog_rates/status/668955713004314625/photo/1 10 10 NaN
2192 668932921458302977 2015-11-23 23:23:31 Twitter for iPhone This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 https://t.co/rcrKkL7eB6 https://twitter.com/dog_rates/status/668932921458302977/photo/1 9 10 Herald
2193 668902994700836864 2015-11-23 21:24:36 Twitter for iPhone Meet Lambeau. He's a Whistling Haiku from the plains of southern Guatemala. 11/10 so. damn. majestic. https://t.co/UqCvpSgMJe https://twitter.com/dog_rates/status/668902994700836864/photo/1 11 10 Lambeau
2194 668892474547511297 2015-11-23 20:42:48 Twitter for iPhone This is Ruffles. He is an Albanian Shoop Da Whoop. He just noticed the camera. Patriotic af. Classy hardwood. 11/10 https://t.co/HyDpTU5Jhj https://twitter.com/dog_rates/status/668892474547511297/photo/1 11 10 Ruffles
2195 668872652652679168 2015-11-23 19:24:02 Twitter for iPhone This is Amélie. She is a confident white college girl. Extremely intimidating. Literally can't rn omg. 11/10 fab https://t.co/up0MHRxelf https://twitter.com/dog_rates/status/668872652652679168/photo/1 11 10 Amélie
2196 668852170888998912 2015-11-23 18:02:38 Twitter for iPhone Say hello to Bobb. Bobb is a Golden High Fescue &amp; a proud father of 8. Bobb sleeps while the little pups play. 11/10 https://t.co/OmxouCZ8IY https://twitter.com/dog_rates/status/668852170888998912/photo/1 11 10 Bobb
2197 668826086256599040 2015-11-23 16:18:59 Twitter for iPhone This is Banditt. He is a brown LaBeouf retriever. Loves cold weather. 4 smaller dogs are his sons (probably). 10/10 https://t.co/Ko7eCsFpnI https://twitter.com/dog_rates/status/668826086256599040/photo/1 10 10 Banditt
2198 668815180734689280 2015-11-23 15:35:39 Twitter for iPhone This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog https://t.co/IGmVbz07tZ https://twitter.com/dog_rates/status/668815180734689280/photo/1 7 10 NaN
2199 668779399630725120 2015-11-23 13:13:28 Twitter for iPhone This is Kevon. He is not physically or mentally prepared to start his Monday. 10/10 totes relatable https://t.co/YVAJgWHzPW https://twitter.com/dog_rates/status/668779399630725120/photo/1 10 10 Kevon
2200 668655139528511488 2015-11-23 04:59:42 Twitter for iPhone Say hello to Winifred. He is a Papyrus Hydrangea mix. Can tie shoes. 11/10 inspiring pup https://t.co/mwnBN6ZkPt https://twitter.com/dog_rates/status/668655139528511488/photo/1 11 10 Winifred
2201 668645506898350081 2015-11-23 04:21:26 Twitter for iPhone Incredibly rare dog here. Good at bipedalism. Rad blue spikes. Ready to dance. 11/10 https://t.co/70X1TIXn38 https://twitter.com/dog_rates/status/668645506898350081/photo/1 11 10 NaN
2202 668643542311546881 2015-11-23 04:13:37 Twitter for iPhone Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet https://t.co/IiSdmhkC5N https://twitter.com/dog_rates/status/668643542311546881/photo/1 3 10 NaN
2203 668641109086707712 2015-11-23 04:03:57 Twitter for iPhone Meet Hanz. He heard some thunder. 10/10 https://t.co/pKJK23j0QZ https://twitter.com/dog_rates/status/668641109086707712/photo/1 10 10 Hanz
2204 668636665813057536 2015-11-23 03:46:18 Twitter for iPhone This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg https://twitter.com/dog_rates/status/668636665813057536/photo/1 10 10 NaN
2205 668633411083464705 2015-11-23 03:33:22 Twitter for iPhone This is Churlie. He likes bagels. 10/10 https://t.co/k8P6FZlzAG https://twitter.com/dog_rates/status/668633411083464705/photo/1,https://twitter.com/dog_rates/status/668633411083464705/photo/1 10 10 Churlie
2206 668631377374486528 2015-11-23 03:25:17 Twitter for iPhone Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying https://t.co/fvVNScw8VH https://twitter.com/dog_rates/status/668631377374486528/photo/1 5 10 Zeek
2207 668627278264475648 2015-11-23 03:09:00 Twitter for iPhone This is Timofy. He's a pilot for Southwest. It's Christmas morning &amp; everyone has gotten kickass gifts but him. 9/10 https://t.co/3FuNbzyPwo https://twitter.com/dog_rates/status/668627278264475648/photo/1 9 10 Timofy
2208 668625577880875008 2015-11-23 03:02:14 Twitter for iPhone This is Maks. Maks just noticed something wasn't right. 10/10 https://t.co/0zBycaxyvs https://twitter.com/dog_rates/status/668625577880875008/photo/1 10 10 Maks
2209 668623201287675904 2015-11-23 02:52:48 Twitter for iPhone This is Jomathan. He is not thrilled about the length of the grass. 10/10 https://t.co/TIhVKEIPqj https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1 10 10 Jomathan
2210 668620235289837568 2015-11-23 02:41:01 Twitter for iPhone Say hello to Kallie. There was a tornado in the area &amp; the news guy said everyone should wear a helmet. 10/10 adorbz https://t.co/AGyogHtmXx https://twitter.com/dog_rates/status/668620235289837568/photo/1 10 10 Kallie
2211 668614819948453888 2015-11-23 02:19:29 Twitter for iPhone Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm https://twitter.com/dog_rates/status/668614819948453888/photo/1 7 10 NaN
2212 668587383441514497 2015-11-23 00:30:28 Vine - Make a Scene Never forget this vine. You will not stop watching for at least 15 minutes. This is the second coveted.. 13/10 https://t.co/roqIxCvEB3 https://vine.co/v/ea0OwvPTx9l 13 10 NaN
2213 668567822092664832 2015-11-22 23:12:44 Twitter for iPhone This is Marvin. He can tie a bow tie better than me. 11/10 https://t.co/81kzPgqjQ3 https://twitter.com/dog_rates/status/668567822092664832/photo/1 11 10 Marvin
2214 668544745690562560 2015-11-22 21:41:02 Twitter for iPhone It is an honor to rate this pup. He is a Snorklhuahua from Amarillo. A true renaissance dog. Also part Rudolph 10/10 https://t.co/ALNyYuGui7 https://twitter.com/dog_rates/status/668544745690562560/photo/1 10 10 NaN
2215 668542336805281792 2015-11-22 21:31:28 Twitter for iPhone There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs https://t.co/VvYVbsi6c3 https://twitter.com/dog_rates/status/668542336805281792/photo/1 10 10 NaN
2216 668537837512433665 2015-11-22 21:13:35 Twitter for iPhone This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&amp;1/10 https://t.co/stEodX9Aba https://twitter.com/dog_rates/status/668537837512433665/photo/1 8 10 Spark
2217 668528771708952576 2015-11-22 20:37:34 Twitter for iPhone This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW https://twitter.com/dog_rates/status/668528771708952576/photo/1 12 10 Gòrdón
2218 668507509523615744 2015-11-22 19:13:05 Twitter for iPhone This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt https://twitter.com/dog_rates/status/668507509523615744/photo/1 10 10 NaN
2219 668496999348633600 2015-11-22 18:31:19 Twitter for iPhone This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 https://t.co/Edy7B5vOp2 https://twitter.com/dog_rates/status/668496999348633600/photo/1 8 10 Jo
2220 668484198282485761 2015-11-22 17:40:27 Twitter for iPhone Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups https://t.co/uXgmECGYEB https://twitter.com/dog_rates/status/668484198282485761/photo/1 9 10 NaN
2221 668480044826800133 2015-11-22 17:23:57 Twitter for iPhone Say hello to DayZ. She is definitely stuck on that stair. Just looking for someone to help her. 11/10 I would help https://t.co/be3zMW0Qj5 https://twitter.com/dog_rates/status/668480044826800133/photo/1 11 10 DayZ
2222 668466899341221888 2015-11-22 16:31:42 Twitter for iPhone Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 https://t.co/YOHe6lf09m https://twitter.com/dog_rates/status/668466899341221888/photo/1 4 10 NaN
2223 668297328638447616 2015-11-22 05:17:54 Twitter for iPhone 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s https://t.co/P8bivfp5sU https://twitter.com/dog_rates/status/668297328638447616/photo/1 9 10 NaN
2224 668291999406125056 2015-11-22 04:56:43 Twitter for iPhone I can't do better than he did. 10/10 https://t.co/fM0KXns7Or https://twitter.com/dog_rates/status/668291999406125056/photo/1 10 10 NaN
2225 668286279830867968 2015-11-22 04:33:59 Twitter for iPhone Meet Rusty. Rusty's dreaming of a world where Twitter never got rid of favorites. Looks like a happy world. 11/10 https://t.co/C8U6cxI1Jc https://twitter.com/dog_rates/status/668286279830867968/photo/1 11 10 Rusty
2226 668274247790391296 2015-11-22 03:46:11 Twitter for iPhone Meet Sophie. Her son just got in the car to leave for college. Very touching. Perfect dramatic sunlight. 10/10 yaass https://t.co/3j9kZRcpVB https://twitter.com/dog_rates/status/668274247790391296/photo/1 10 10 Sophie
2227 668268907921326080 2015-11-22 03:24:58 Twitter for iPhone Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert https://t.co/aeZykWwiJN https://twitter.com/dog_rates/status/668268907921326080/photo/1 10 10 NaN
2228 668256321989451776 2015-11-22 02:34:57 Twitter for iPhone This is Jareld. Jareld rules these waters. Ladies and Gentleman... 13/10. This dog is utterly fucking spectacular. https://t.co/L6qAEV5PAd https://twitter.com/dog_rates/status/668256321989451776/photo/1 13 10 Jareld
2229 668248472370458624 2015-11-22 02:03:45 Twitter for iPhone Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho https://t.co/1XYRh8N00K https://twitter.com/dog_rates/status/668248472370458624/photo/1 8 10 Bisquick
2230 668237644992782336 2015-11-22 01:20:44 Twitter for iPhone This is Torque. He served his nickel. Better not owe Torque money. Torque will find u. 10/10 cause I'm scared of him https://t.co/TnSRDqYO5i https://twitter.com/dog_rates/status/668237644992782336/photo/1 10 10 Torque
2231 668226093875376128 2015-11-22 00:34:50 Twitter for iPhone Sneaky dog here. Tuba player has no clue. 10/10 super sneaky https://t.co/jWVwSppaa2 https://twitter.com/dog_rates/status/668226093875376128/photo/1 10 10 NaN
2232 668221241640230912 2015-11-22 00:15:33 Twitter for iPhone These two dogs are Bo &amp; Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals https://t.co/4pw1QQ6udh https://twitter.com/dog_rates/status/668221241640230912/photo/1 10 10 NaN
2233 668204964695683073 2015-11-21 23:10:52 Twitter for iPhone This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 https://t.co/4ilfcR5SlK https://twitter.com/dog_rates/status/668204964695683073/photo/1 8 10 Ron
2234 668190681446379520 2015-11-21 22:14:07 Twitter for iPhone This is Skittles. I would kidnap Skittles. Pink dog in back hasn't moved in days. 12/10 https://t.co/2wm0POA9N2 https://twitter.com/dog_rates/status/668190681446379520/photo/1 12 10 Skittles
2235 668171859951755264 2015-11-21 20:59:20 Twitter for iPhone This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb https://twitter.com/dog_rates/status/668171859951755264/photo/1 7 10 NaN
2236 668154635664932864 2015-11-21 19:50:53 Twitter for iPhone Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both https://t.co/79sHR36NsI https://twitter.com/dog_rates/status/668154635664932864/photo/1 9 10 NaN
2237 668142349051129856 2015-11-21 19:02:04 Twitter for iPhone This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 https://t.co/DnhUw0aBM2 https://twitter.com/dog_rates/status/668142349051129856/photo/1 2 10 NaN
2238 668113020489474048 2015-11-21 17:05:31 Twitter for iPhone This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 https://t.co/GCJzm3YsfX https://twitter.com/dog_rates/status/668113020489474048/photo/1 6 10 Alfie
2239 667937095915278337 2015-11-21 05:26:27 Twitter for iPhone This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun https://t.co/x89NSCEZCq https://twitter.com/dog_rates/status/667937095915278337/photo/1 3 10 NaN
2240 667924896115245057 2015-11-21 04:37:59 Twitter for iPhone This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 https://t.co/fW6kIPFGD2 https://twitter.com/dog_rates/status/667924896115245057/photo/1 9 10 Jiminy
2241 667915453470232577 2015-11-21 04:00:28 Twitter for iPhone Meet Otis. He is a Peruvian Quartzite. Pic sponsored by Planters. Ears on point. Killer sunglasses. 10/10 ily Otis https://t.co/tIaaBIMlJN https://twitter.com/dog_rates/status/667915453470232577/photo/1 10 10 Otis
2242 667911425562669056 2015-11-21 03:44:27 Twitter for iPhone Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 https://t.co/SyMoWrp368 https://twitter.com/dog_rates/status/667911425562669056/photo/1 5 10 NaN
2243 667902449697558528 2015-11-21 03:08:47 Twitter for iPhone This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with https://t.co/sJeHdGUt0W https://twitter.com/dog_rates/status/667902449697558528/photo/1 9 10 Cleopatricia
2244 667886921285246976 2015-11-21 02:07:05 Twitter for iPhone This is Erik. He's fucken massive. But also kind. Let's people hug him for free. Looks soft. 11/10 I would hug Erik https://t.co/MT7Q4aDQS1 https://twitter.com/dog_rates/status/667886921285246976/photo/1 11 10 Erik
2245 667885044254572545 2015-11-21 01:59:37 Twitter for iPhone Meet Stu. Stu has stacks on stacks and an eye made of pure gold. 10/10 pay for my tuition pls https://t.co/7rkYZQdKEd https://twitter.com/dog_rates/status/667885044254572545/photo/1 10 10 Stu
2246 667878741721415682 2015-11-21 01:34:35 Twitter for iPhone This is Tedrick. He lives on the edge. Needs someone to hit the gas tho. Other than that he's a baller. 10&amp;2/10 https://t.co/LvP1TTYSCN https://twitter.com/dog_rates/status/667878741721415682/photo/1 2 10 Tedrick
2247 667873844930215936 2015-11-21 01:15:07 Twitter for iPhone Neat dog. Lots of spikes. Always in push-up position. Laid a shit ton of eggs earlier. Super stellar pup. 10/10 https://t.co/ODqrL3zXYE https://twitter.com/dog_rates/status/667873844930215936/photo/1 10 10 NaN
2248 667866724293877760 2015-11-21 00:46:50 Twitter for iPhone This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https://t.co/SBmWbfAg6X https://twitter.com/dog_rates/status/667866724293877760/photo/1 10 10 Shaggy
2249 667861340749471744 2015-11-21 00:25:26 Twitter for iPhone This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba https://twitter.com/dog_rates/status/667861340749471744/photo/1 9 10 NaN
2250 667832474953625600 2015-11-20 22:30:44 Twitter for iPhone THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable https://t.co/z1xPTgVLc7 https://twitter.com/dog_rates/status/667832474953625600/photo/1 12 10 NaN
2251 667806454573760512 2015-11-20 20:47:20 Twitter for iPhone This is Filup. He is overcome with joy after finally meeting his father. 10/10 https://t.co/TBmDJXJB75 https://twitter.com/dog_rates/status/667806454573760512/photo/1 10 10 Filup
2252 667801013445750784 2015-11-20 20:25:43 Twitter for iPhone OMIGOD 12/10 https://t.co/SVMF4Frf1w https://twitter.com/dog_rates/status/667801013445750784/photo/1 12 10 NaN
2253 667793409583771648 2015-11-20 19:55:30 Twitter for iPhone Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 https://t.co/s1z7mX4c9O https://twitter.com/dog_rates/status/667793409583771648/photo/1 8 10 NaN
2254 667782464991965184 2015-11-20 19:12:01 Twitter for iPhone Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 https://t.co/BY8nQAMz0x https://twitter.com/dog_rates/status/667782464991965184/photo/1 9 10 NaN
2255 667773195014021121 2015-11-20 18:35:10 Twitter Web Client This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD https://twitter.com/dog_rates/status/667773195014021121/photo/1 8 10 NaN
2256 667766675769573376 2015-11-20 18:09:16 Twitter Web Client This is Calvin. He is a Luxembourgian Mayo. Having issues with truck. Has it under control tho. 9/10 responsible af https://t.co/3Bbba7y8Xe https://twitter.com/dog_rates/status/667766675769573376/photo/1 9 10 Calvin
2257 667728196545200128 2015-11-20 15:36:22 Twitter Web Client Meet Olive. He comes to spot by tree to reminisce of simpler times and truly admire his place in the universe. 11/10 https://t.co/LwrCwlWwPB https://twitter.com/dog_rates/status/667728196545200128/photo/1 11 10 Olive
2258 667724302356258817 2015-11-20 15:20:54 Twitter Web Client What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 https://t.co/0nIxPTDWAZ https://twitter.com/dog_rates/status/667724302356258817/photo/1 7 10 NaN
2261 667549055577362432 2015-11-20 03:44:31 Twitter Web Client Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 https://t.co/i9iSGNn3fx https://twitter.com/dog_rates/status/667549055577362432/photo/1 1 10 NaN
2262 667546741521195010 2015-11-20 03:35:20 Twitter Web Client Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 https://t.co/afRtVsoIIb https://twitter.com/dog_rates/status/667546741521195010/photo/1 9 10 George
2263 667544320556335104 2015-11-20 03:25:43 Twitter Web Client This is Kial. Kial is either wearing a cape, which would be rad, or flashing us, which would be rude. 10/10 or 4/10 https://t.co/8zcwIoiuqR https://twitter.com/dog_rates/status/667544320556335104/photo/1 10 10 Kial
2264 667538891197542400 2015-11-20 03:04:08 Twitter Web Client This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe https://twitter.com/dog_rates/status/667538891197542400/photo/1 9 10 NaN
2265 667534815156183040 2015-11-20 02:47:56 Twitter Web Client This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 https://t.co/CpPxD28IpV https://twitter.com/dog_rates/status/667534815156183040/photo/1 8 10 Frank
2266 667530908589760512 2015-11-20 02:32:25 Twitter Web Client Meet Naphaniel. He doesn't necessarily enjoy his day job, but he's damn good at it. 10/10 https://t.co/xoRWyQTcmy https://twitter.com/dog_rates/status/667530908589760512/photo/1 10 10 Naphaniel
2267 667524857454854144 2015-11-20 02:08:22 Twitter Web Client Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup https://t.co/seESNzgsdm https://twitter.com/dog_rates/status/667524857454854144/photo/1 12 10 NaN
2268 667517642048163840 2015-11-20 01:39:42 Twitter Web Client This is Dook &amp; Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s https://t.co/fh5KflzBR0 https://twitter.com/dog_rates/status/667517642048163840/photo/1 8 10 Dook
2269 667509364010450944 2015-11-20 01:06:48 Twitter Web Client This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 https://twitter.com/dog_rates/status/667509364010450944/photo/1 12 10 NaN
2270 667502640335572993 2015-11-20 00:40:05 Twitter Web Client Say hello to Hall and Oates. Oates is winking and Hall is contemplating the artistic entropy of the universe. 11/10s https://t.co/n5Wtb5Hvsl https://twitter.com/dog_rates/status/667502640335572993/photo/1 11 10 Hall
2271 667495797102141441 2015-11-20 00:12:54 Twitter Web Client This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af https://t.co/5NhPV8E45i https://twitter.com/dog_rates/status/667495797102141441/photo/1 9 10 Philippe
2272 667491009379606528 2015-11-19 23:53:52 Twitter Web Client Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 https://t.co/ITxxcc4v9y https://twitter.com/dog_rates/status/667491009379606528/photo/1 7 10 NaN
2273 667470559035432960 2015-11-19 22:32:36 Twitter Web Client This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk https://twitter.com/dog_rates/status/667470559035432960/photo/1 11 10 NaN
2274 667455448082227200 2015-11-19 21:32:34 Twitter Web Client This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s https://t.co/uLzRi1drVK https://twitter.com/dog_rates/status/667455448082227200/photo/1 7 10 Reese
2275 667453023279554560 2015-11-19 21:22:56 Twitter Web Client Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa https://twitter.com/dog_rates/status/667453023279554560/photo/1 11 10 Cupcake
2276 667443425659232256 2015-11-19 20:44:47 Twitter for iPhone Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N https://twitter.com/dog_rates/status/667443425659232256/photo/1 6 10 NaN
2277 667437278097252352 2015-11-19 20:20:22 Twitter for iPhone Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx https://twitter.com/dog_rates/status/667437278097252352/photo/1 10 10 NaN
2278 667435689202614272 2015-11-19 20:14:03 Twitter for iPhone Ermergerd 12/10 https://t.co/PQni2sjPsm https://twitter.com/dog_rates/status/667435689202614272/photo/1 12 10 NaN
2279 667405339315146752 2015-11-19 18:13:27 Twitter for iPhone This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 https://twitter.com/dog_rates/status/667405339315146752/photo/1 7 10 Biden
2280 667393430834667520 2015-11-19 17:26:08 Twitter for iPhone This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 https://t.co/A37eGLz5WS https://twitter.com/dog_rates/status/667393430834667520/photo/1 8 10 Fwed
2281 667369227918143488 2015-11-19 15:49:57 Twitter for iPhone Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 https://t.co/LEaviT37v1 https://twitter.com/dog_rates/status/667369227918143488/photo/1 10 10 NaN
2282 667211855547486208 2015-11-19 05:24:37 Twitter for iPhone This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 https://t.co/azEoGqVonH https://twitter.com/dog_rates/status/667211855547486208/photo/1 9 10 Genevieve
2283 667200525029539841 2015-11-19 04:39:35 Twitter for iPhone This is Joshwa. He is a fuckboy supreme. He clearly relies on owner but doesn't respect them. Dreamy eyes tho 11/10 https://t.co/60xYFRATPZ https://twitter.com/dog_rates/status/667200525029539841/photo/1 11 10 Joshwa
2284 667192066997374976 2015-11-19 04:05:59 Twitter for iPhone *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 https://t.co/QCugm5ydl6 https://twitter.com/dog_rates/status/667192066997374976/photo/1 12 10 NaN
2285 667188689915760640 2015-11-19 03:52:34 Twitter for iPhone Quite an advanced dog here. Impressively dressed for canine. Has weapon. About to take out trash. 10/10 good dog https://t.co/8uCMwS9CbV https://twitter.com/dog_rates/status/667188689915760640/photo/1 10 10 NaN
2286 667182792070062081 2015-11-19 03:29:07 Twitter for iPhone This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.co/s2yYuHabWl https://twitter.com/dog_rates/status/667182792070062081/photo/1 10 10 Timison
2287 667177989038297088 2015-11-19 03:10:02 Twitter for iPhone This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW https://twitter.com/dog_rates/status/667177989038297088/photo/1 8 10 NaN
2288 667176164155375616 2015-11-19 03:02:47 Twitter for iPhone These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable https://t.co/PZxSarAfSN https://twitter.com/dog_rates/status/667176164155375616/photo/1 4 10 NaN
2289 667174963120574464 2015-11-19 02:58:01 Twitter for iPhone This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 https://t.co/fGDWgukcBs https://twitter.com/dog_rates/status/667174963120574464/photo/1 9 10 Clarence
2290 667171260800061440 2015-11-19 02:43:18 Twitter for iPhone Say hello to Kenneth. He likes Reese's Puffs. 10/10 https://t.co/6RHNRsByOY https://twitter.com/dog_rates/status/667171260800061440/photo/1 10 10 Kenneth
2291 667165590075940865 2015-11-19 02:20:46 Twitter for iPhone This is Churlie. AKA Fetty Woof. Lost eye saving a school bus full of toddlers from a tsunami. Great guy. 10/10 https://t.co/li2XYBVuAY https://twitter.com/dog_rates/status/667165590075940865/photo/1 10 10 Churlie
2292 667160273090932737 2015-11-19 01:59:39 Twitter for iPhone This is Bradlay. He is a Ronaldinho Matsuyama mix. Can also mountain bike (wow). Loves that blue light lime. 11/10 https://t.co/DKhgkMx4N1 https://twitter.com/dog_rates/status/667160273090932737/photo/1 11 10 Bradlay
2293 667152164079423490 2015-11-19 01:27:25 Twitter for iPhone This is Pipsy. He is a fluffball. Enjoys traveling the sea &amp; getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X https://twitter.com/dog_rates/status/667152164079423490/photo/1 12 10 Pipsy
2294 667138269671505920 2015-11-19 00:32:12 Twitter for iPhone Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0DvHAMdA4V https://twitter.com/dog_rates/status/667138269671505920/photo/1 10 10 NaN
2295 667119796878725120 2015-11-18 23:18:48 Twitter for iPhone This is Gabe. He is a southern Baklava. Gabe has always wanted to fit in with the other bananas. 10/10 fabulous https://t.co/3LZrJzg3BJ https://twitter.com/dog_rates/status/667119796878725120/photo/1 10 10 Gabe
2296 667090893657276420 2015-11-18 21:23:57 Twitter for iPhone This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 https://t.co/Ks0jZtdIrr https://twitter.com/dog_rates/status/667090893657276420/photo/1 7 10 Clybe
2297 667073648344346624 2015-11-18 20:15:26 Twitter for iPhone Here is Dave. He is actually just a skinny legged seal. Happy birthday Dave. 10/10 https://t.co/DPSamreuRq https://twitter.com/dog_rates/status/667073648344346624/photo/1 10 10 Dave
2299 667065535570550784 2015-11-18 19:43:11 Twitter for iPhone Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 https://t.co/7JdgVqDnvR https://twitter.com/dog_rates/status/667065535570550784/photo/1 8 10 NaN
2300 667062181243039745 2015-11-18 19:29:52 Twitter for iPhone This is Keet. He is a Floridian Amukamara. Absolutely epic propeller hat. Pristine tongue. Nice plaid. 10/10 https://t.co/tz1lpuvXLA https://twitter.com/dog_rates/status/667062181243039745/photo/1 10 10 Keet
2301 667044094246576128 2015-11-18 18:17:59 Twitter for iPhone 12/10 gimme now https://t.co/QZAnwgnOMB https://twitter.com/dog_rates/status/667044094246576128/photo/1 12 10 NaN
2302 667012601033924608 2015-11-18 16:12:51 Twitter for iPhone This is Klevin. He laughs a lot. Very cool dog. 9/10 https://t.co/bATAbPNv0m https://twitter.com/dog_rates/status/667012601033924608/photo/1 9 10 Klevin
2303 666996132027977728 2015-11-18 15:07:24 Twitter for iPhone This is Carll. He wants to be a donkey. But also a soccer star. Dreams big. 10/10 https://t.co/SVpNbhaIMk https://twitter.com/dog_rates/status/666996132027977728/photo/1 10 10 Carll
2304 666983947667116034 2015-11-18 14:18:59 Twitter for iPhone This is a curly Ticonderoga named Pepe. No feet. Loves to jet ski. 11/10 would hug until forever https://t.co/cyDfaK8NBc https://twitter.com/dog_rates/status/666983947667116034/photo/1 11 10 NaN
2305 666837028449972224 2015-11-18 04:35:11 Twitter for iPhone My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 https://t.co/xYGdBrMS9h https://twitter.com/dog_rates/status/666837028449972224/photo/1 3 10 NaN
2306 666835007768551424 2015-11-18 04:27:09 Twitter for iPhone These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 &amp; 10/10 https://t.co/ZnEMHBsAs1 https://twitter.com/dog_rates/status/666835007768551424/photo/1 10 10 NaN
2307 666826780179869698 2015-11-18 03:54:28 Twitter for iPhone 12/10 simply brilliant pup https://t.co/V6ZzG45zzG https://twitter.com/dog_rates/status/666826780179869698/photo/1 12 10 NaN
2308 666817836334096384 2015-11-18 03:18:55 Twitter for iPhone This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 https://t.co/8whlkYw3mO https://twitter.com/dog_rates/status/666817836334096384/photo/1 9 10 Jeph
2309 666804364988780544 2015-11-18 02:25:23 Twitter for iPhone This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 https://t.co/RdKbAOEpDK https://twitter.com/dog_rates/status/666804364988780544/photo/1 8 10 Jockson
2310 666786068205871104 2015-11-18 01:12:41 Twitter for iPhone Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 https://t.co/EIn5kElY1S https://twitter.com/dog_rates/status/666786068205871104/photo/1 2 10 NaN
2311 666781792255496192 2015-11-18 00:55:42 Twitter for iPhone This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa https://twitter.com/dog_rates/status/666781792255496192/photo/1 10 10 NaN
2312 666776908487630848 2015-11-18 00:36:17 Twitter for iPhone This is Josep. He is a Rye Manganese mix. Can drive w eyes closed. Very irresponsible. Menace on the roadways. 5/10 https://t.co/XNGeDwrtYH https://twitter.com/dog_rates/status/666776908487630848/photo/1 5 10 Josep
2313 666739327293083650 2015-11-17 22:06:57 Twitter for iPhone This is Lugan. He is a Bohemian Rhapsody. Very confused dog. Thinks his name is Rocky. Not amused by the snows 10/10 https://t.co/tI3uFLDHBI https://twitter.com/dog_rates/status/666739327293083650/photo/1 10 10 Lugan
2314 666701168228331520 2015-11-17 19:35:19 Twitter for iPhone This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB https://twitter.com/dog_rates/status/666701168228331520/photo/1 8 10 NaN
2315 666691418707132416 2015-11-17 18:56:35 Twitter for iPhone This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 https://t.co/bg4TqvvkuF https://twitter.com/dog_rates/status/666691418707132416/photo/1 8 10 Christoper
2316 666649482315059201 2015-11-17 16:09:56 Twitter for iPhone Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 https://t.co/vXMKrJC81s https://twitter.com/dog_rates/status/666649482315059201/photo/1 4 10 NaN
2317 666644823164719104 2015-11-17 15:51:26 Twitter for iPhone This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 https://t.co/LEkZjZxESQ https://twitter.com/dog_rates/status/666644823164719104/photo/1 9 10 Jimothy
2318 666454714377183233 2015-11-17 03:16:00 Twitter for iPhone I'll name the dogs from now on. This is Kreggory. He does parkour. 10/10 https://t.co/uPqPeXAcua https://twitter.com/dog_rates/status/666454714377183233/photo/1 10 10 Kreggory
2319 666447344410484738 2015-11-17 02:46:43 Twitter for iPhone This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say https://t.co/kH60oka1HW https://twitter.com/dog_rates/status/666447344410484738/photo/1 9 10 Scout
2320 666437273139982337 2015-11-17 02:06:42 Twitter for iPhone Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 https://t.co/7LtjBS0GPK https://twitter.com/dog_rates/status/666437273139982337/photo/1 7 10 NaN
2321 666435652385423360 2015-11-17 02:00:15 Twitter for iPhone "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 https://t.co/GlFZPzqcEU https://twitter.com/dog_rates/status/666435652385423360/photo/1 10 10 NaN
2322 666430724426358785 2015-11-17 01:40:41 Twitter for iPhone Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 https://t.co/yECbFrSArM https://twitter.com/dog_rates/status/666430724426358785/photo/1 6 10 NaN
2323 666428276349472768 2015-11-17 01:30:57 Twitter for iPhone Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with https://t.co/NMQq6HIglK https://twitter.com/dog_rates/status/666428276349472768/photo/1 7 10 NaN
2324 666421158376562688 2015-11-17 01:02:40 Twitter for iPhone *internally screaming* 12/10 https://t.co/YMcrXC2Y6R https://twitter.com/dog_rates/status/666421158376562688/photo/1 12 10 NaN
2325 666418789513326592 2015-11-17 00:53:15 Twitter for iPhone This is Walter. He is an Alaskan Terrapin. Loves outdated bandanas. One ear still working. Cool house plant. 10/10 https://t.co/qXpcwENTvn https://twitter.com/dog_rates/status/666418789513326592/photo/1 10 10 Walter
2326 666411507551481857 2015-11-17 00:24:19 Twitter for iPhone This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t https://twitter.com/dog_rates/status/666411507551481857/photo/1 2 10 quite
2327 666407126856765440 2015-11-17 00:06:54 Twitter for iPhone This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h https://twitter.com/dog_rates/status/666407126856765440/photo/1 7 10 NaN
2328 666396247373291520 2015-11-16 23:23:41 Twitter for iPhone Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 https://t.co/Dc7b0E8qFE https://twitter.com/dog_rates/status/666396247373291520/photo/1 9 10 NaN
2329 666373753744588802 2015-11-16 21:54:18 Twitter for iPhone Those are sunglasses and a jean jacket. 11/10 dog cool af https://t.co/uHXrPkUEyl https://twitter.com/dog_rates/status/666373753744588802/photo/1 11 10 NaN
2330 666362758909284353 2015-11-16 21:10:36 Twitter for iPhone Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet https://t.co/XMD9CwjEnM https://twitter.com/dog_rates/status/666362758909284353/photo/1 6 10 NaN
2331 666353288456101888 2015-11-16 20:32:58 Twitter for iPhone Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 https://t.co/tltQ5w9aUO https://twitter.com/dog_rates/status/666353288456101888/photo/1 8 10 NaN
2332 666345417576210432 2015-11-16 20:01:42 Twitter for iPhone Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 https://t.co/VFKG1vxGjB https://twitter.com/dog_rates/status/666345417576210432/photo/1 10 10 NaN
2333 666337882303524864 2015-11-16 19:31:45 Twitter for iPhone This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively https://t.co/QpRjllzWAL https://twitter.com/dog_rates/status/666337882303524864/photo/1 9 10 NaN
2334 666293911632134144 2015-11-16 16:37:02 Twitter for iPhone This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 https://t.co/IIXis0zta0 https://twitter.com/dog_rates/status/666293911632134144/photo/1 3 10 NaN
2335 666287406224695296 2015-11-16 16:11:11 Twitter for iPhone This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv https://twitter.com/dog_rates/status/666287406224695296/photo/1 1 2 NaN
2336 666273097616637952 2015-11-16 15:14:19 Twitter for iPhone Can take selfies 11/10 https://t.co/ws2AMaNwPW https://twitter.com/dog_rates/status/666273097616637952/photo/1 11 10 NaN
2337 666268910803644416 2015-11-16 14:57:41 Twitter for iPhone Very concerned about fellow dog trapped in computer. 10/10 https://t.co/0yxApIikpk https://twitter.com/dog_rates/status/666268910803644416/photo/1 10 10 NaN
2338 666104133288665088 2015-11-16 04:02:55 Twitter for iPhone Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/Asgdc6kuLX https://twitter.com/dog_rates/status/666104133288665088/photo/1 1 10 NaN
2339 666102155909144576 2015-11-16 03:55:04 Twitter for iPhone Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 https://t.co/11LvqN4WLq https://twitter.com/dog_rates/status/666102155909144576/photo/1 11 10 NaN
2340 666099513787052032 2015-11-16 03:44:34 Twitter for iPhone Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 https://t.co/Ri4nMTLq5C https://twitter.com/dog_rates/status/666099513787052032/photo/1 8 10 NaN
2341 666094000022159362 2015-11-16 03:22:39 Twitter for iPhone This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with https://t.co/mnioXo3IfP https://twitter.com/dog_rates/status/666094000022159362/photo/1 9 10 NaN
2342 666082916733198337 2015-11-16 02:38:37 Twitter for iPhone Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof https://t.co/3RU6x0vHB7 https://twitter.com/dog_rates/status/666082916733198337/photo/1 6 10 NaN
2343 666073100786774016 2015-11-16 01:59:36 Twitter for iPhone Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot https://t.co/Yk6GHE9tOY https://twitter.com/dog_rates/status/666073100786774016/photo/1 10 10 NaN
2344 666071193221509120 2015-11-16 01:52:02 Twitter for iPhone Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually https://t.co/ZoL8kq2XFx https://twitter.com/dog_rates/status/666071193221509120/photo/1 9 10 NaN
2345 666063827256086533 2015-11-16 01:22:45 Twitter for iPhone This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK https://twitter.com/dog_rates/status/666063827256086533/photo/1 10 10 NaN
2346 666058600524156928 2015-11-16 01:01:59 Twitter for iPhone Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p https://twitter.com/dog_rates/status/666058600524156928/photo/1 8 10 NaN
2347 666057090499244032 2015-11-16 00:55:59 Twitter for iPhone My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare https://t.co/yWBqbrzy8O https://twitter.com/dog_rates/status/666057090499244032/photo/1 9 10 NaN
2348 666055525042405380 2015-11-16 00:49:46 Twitter for iPhone Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt https://twitter.com/dog_rates/status/666055525042405380/photo/1 10 10 NaN
2349 666051853826850816 2015-11-16 00:35:11 Twitter for iPhone This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 https://t.co/v5A4vzSDdc https://twitter.com/dog_rates/status/666051853826850816/photo/1 2 10 NaN
2350 666050758794694657 2015-11-16 00:30:50 Twitter for iPhone This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe https://twitter.com/dog_rates/status/666050758794694657/photo/1 10 10 NaN
2351 666049248165822465 2015-11-16 00:24:50 Twitter for iPhone Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 https://t.co/4B7cOc1EDq https://twitter.com/dog_rates/status/666049248165822465/photo/1 5 10 NaN
2352 666044226329800704 2015-11-16 00:04:52 Twitter for iPhone This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx https://twitter.com/dog_rates/status/666044226329800704/photo/1 6 10 NaN
2353 666033412701032449 2015-11-15 23:21:54 Twitter for iPhone Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR https://twitter.com/dog_rates/status/666033412701032449/photo/1 9 10 NaN
2354 666029285002620928 2015-11-15 23:05:30 Twitter for iPhone This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of https://t.co/r7mOb2m0UI https://twitter.com/dog_rates/status/666029285002620928/photo/1 7 10 NaN
2355 666020888022790149 2015-11-15 22:32:08 Twitter for iPhone Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet https://t.co/BLDqew2Ijj https://twitter.com/dog_rates/status/666020888022790149/photo/1 8 10 NaN

Quality issue

Define

some of the values dog_stage column have two value in it e.x(doggopuppo) will have (,) to separate it.

In [50]:
twitter_archive_df_clean.dog_stage[191]
Out[50]:
'doggopuppo'

code

In [51]:
# handle multiple stages
twitter_archive_df_clean.loc[twitter_archive_df_clean.dog_stage == 'doggopupper', 'dog_stage'] = 'doggo, pupper'
twitter_archive_df_clean.loc[twitter_archive_df_clean.dog_stage == 'doggopuppo', 'dog_stage'] = 'doggo, puppo'
twitter_archive_df_clean.loc[twitter_archive_df_clean.dog_stage == 'doggofloofer', 'dog_stage'] = 'doggo, floofer'

Test

In [52]:
twitter_archive_df_clean.dog_stage[191]
Out[52]:
'doggo, puppo'

Quality issue

Define

There are empty values in dog_stage column. It should be replace with NaN

code

In [53]:
# handle missing values
twitter_archive_df_clean.loc[twitter_archive_df_clean.dog_stage == '', 'dog_stage'] = np.nan

Test

In [54]:
twitter_archive_df_clean.dog_stage.sample(10)
Out[54]:
1101       NaN
1167       NaN
1483    pupper
1884       NaN
639        NaN
1823       NaN
896        NaN
1082       NaN
1002       NaN
300      doggo
Name: dog_stage, dtype: object

Quality issue

Define

image_predictionsdf columns(p1,p2,p3): showing first letter issue (capital and small letter) and underscore () need to be replaced with space

code

In [55]:
col_list = ['p1','p2','p3']
for col in col_list:
    image_predictions_df_clean[col] = image_predictions_df_clean[col].str.replace('_', " ")
    image_predictions_df_clean[col] = image_predictions_df_clean[col].str.capitalize()

Test

In [56]:
image_predictions_df_clean.sample(10)
Out[56]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
531 676821958043033607 https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg 2 Great pyrenees 0.869804 True Kuvasz 0.079814 True Standard poodle 0.013263 True
1774 828046555563323392 https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg 3 Patio 0.272972 False Window screen 0.131295 False Boathouse 0.046393 False
1651 809448704142938112 https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg 1 Greater swiss mountain dog 0.375415 True Cardigan 0.134317 True English springer 0.073697 True
1676 813172488309972993 https://pbs.twimg.com/media/C0j4EESUsAABtMq.jpg 1 Doormat 0.954844 False Golden retriever 0.026193 True Cocker spaniel 0.004386 True
334 672169685991993344 https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg 1 Cocker spaniel 0.991011 True Sussex spaniel 0.004032 True Miniature poodle 0.001276 True
836 694206574471057408 https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg 1 Shih-tzu 0.352547 True Toy poodle 0.155720 True Maltese dog 0.116657 True
1660 811627233043480576 https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg 1 Beagle 0.396280 True Pembroke 0.049562 True Wire-haired fox terrier 0.046349 True
782 690005060500217858 https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg 1 Samoyed 0.270287 True Great pyrenees 0.114027 True Teddy 0.072475 False
1443 775729183532220416 https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg 1 Web site 0.989407 False Hand-held computer 0.002139 False Menu 0.002115 False
92 667546741521195010 https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 Toy poodle 0.787424 True Miniature poodle 0.202225 True Teddy 0.004047 False

Quality issue

Define:

image_predictions_df: This is to convert the result of predictions into one column breed_dog. Relaying on (p1_dog,P2_dog,p3_dog) if it's true it will take the name from the name related to this prediction, which can be found in (p1,p2,p3). breed_dog will take the name from the first true prediction.

code

In [57]:
def dog_breed(row):
    if row['p1_dog']:
        return row['p1']
    elif row['p2_dog']:
        return row['p2']
    elif row['p3_dog']:
        return row['p3']
    else:
        return np.nan
    
    
image_predictions_df_clean['breed_dog'] = image_predictions_df_clean.apply(dog_breed ,axis=1)

Test

In [58]:
image_predictions_df_clean.sample(10)
Out[58]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog breed_dog
2051 887473957103951883 https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian ridgeback 0.054950 True Beagle 0.038915 True Pembroke
533 676897532954456065 https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg 1 Hamster 0.628255 False Guinea pig 0.318646 False Macaque 0.013058 False NaN
267 670807719151067136 https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg 1 Old english sheepdog 0.958035 True Sealyham terrier 0.013892 True Border collie 0.004601 True Old english sheepdog
1880 846874817362120707 https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland sheepdog 0.450539 True Papillon 0.187928 True Collie 0.140068 True Shetland sheepdog
855 696713835009417216 https://pbs.twimg.com/media/Cas5h-wWcAA3nAc.jpg 1 Car mirror 0.379797 False Chesapeake bay retriever 0.321589 True Vizsla 0.116931 True Chesapeake bay retriever
2006 877611172832227328 https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish setter 0.364729 True Golden retriever 0.202907 True Irish terrier 0.107473 True Irish setter
1740 822489057087389700 https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 1 Samoyed 0.416769 True Malamute 0.252706 True Kuvasz 0.157028 True Samoyed
704 684926975086034944 https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg 1 Labrador retriever 0.769412 True Golden retriever 0.144893 True Lion 0.021440 False Labrador retriever
1814 833722901757046785 https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg 1 West highland white terrier 0.918144 True Maltese dog 0.025721 True Lakeland terrier 0.020211 True West highland white terrier
157 668852170888998912 https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 Golden retriever 0.903529 True Tibetan mastiff 0.041497 True Kuvasz 0.022500 True Golden retriever

Quality

Define

(id, retweet_count and favorite_count) these the only columns that should be kept, other columns will be removed.

In [59]:
tweet_df_clean.columns
Out[59]:
Index(['created_at', 'id', 'id_str', 'full_text', 'truncated',
       'display_text_range', 'entities', 'extended_entities', 'source',
       'in_reply_to_status_id', 'in_reply_to_status_id_str',
       'in_reply_to_user_id', 'in_reply_to_user_id_str',
       'in_reply_to_screen_name', 'user', 'geo', 'coordinates', 'place',
       'contributors', 'is_quote_status', 'retweet_count', 'favorite_count',
       'favorited', 'retweeted', 'possibly_sensitive',
       'possibly_sensitive_appealable', 'lang', 'retweeted_status',
       'quoted_status_id', 'quoted_status_id_str', 'quoted_status'],
      dtype='object')

code

In [60]:
tweet_df_clean = tweet_df_clean.drop(columns=['created_at', 'id_str', 'full_text', 'truncated',
                                              'display_text_range', 'entities', 'extended_entities', 'source',
                                              'in_reply_to_status_id', 'in_reply_to_status_id_str',
                                              'in_reply_to_user_id', 'in_reply_to_user_id_str',
                                              'in_reply_to_screen_name', 'user', 'geo', 'coordinates', 'place',
                                              'contributors', 'is_quote_status','favorited', 'retweeted',
                                              'possibly_sensitive','possibly_sensitive_appealable', 'lang', 
                                              'retweeted_status','quoted_status_id', 'quoted_status_id_str',
                                              'quoted_status'])

Test

In [61]:
tweet_df_clean.columns
Out[61]:
Index(['id', 'retweet_count', 'favorite_count'], dtype='object')
In [62]:
tweet_df_clean.head()
Out[62]:
id retweet_count favorite_count
0 892420643555336193 8853 39467
1 892177421306343426 6514 33819
2 891815181378084864 4328 25461
3 891689557279858688 8964 42908
4 891327558926688256 9774 41048

Quality issue

Define:

Rename id column to be tweet_id

code

In [63]:
tweet_df_clean.rename(columns={'id':'tweet_id'}, inplace=True)

Test

In [64]:
tweet_df_clean.head()
Out[64]:
tweet_id retweet_count favorite_count
0 892420643555336193 8853 39467
1 892177421306343426 6514 33819
2 891815181378084864 4328 25461
3 891689557279858688 8964 42908
4 891327558926688256 9774 41048

Tidiness issue

Define:

Joining tables with twitter_archive_df_clean the main dataframe.Main dataframe will be created, which will contain the 3 dataframe

code

In [65]:
main_df_clean = pd.merge(twitter_archive_df_clean, image_predictions_df_clean, how= 'inner', on='tweet_id')
main_df_clean = pd.merge(main_df_clean, tweet_df_clean, how='inner', on='tweet_id')

Test

In [66]:
main_df_clean.head()
Out[66]:
tweet_id timestamp source text expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog breed_dog retweet_count favorite_count
0 892420643555336193 2017-08-01 16:23:56 Twitter for iPhone This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU https://twitter.com/dog_rates/status/892420643555336193/photo/1 13 10 Phineas NaN https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 Orange 0.097049 False Bagel 0.085851 False Banana 0.076110 False NaN 8853 39467
1 892177421306343426 2017-08-01 00:17:27 Twitter for iPhone This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV https://twitter.com/dog_rates/status/892177421306343426/photo/1 13 10 Tilly NaN https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True Papillon 0.068957 True Chihuahua 6514 33819
2 891815181378084864 2017-07-31 00:18:03 Twitter for iPhone This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB https://twitter.com/dog_rates/status/891815181378084864/photo/1 12 10 Archie NaN https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True Malamute 0.078253 True Kelpie 0.031379 True Chihuahua 4328 25461
3 891689557279858688 2017-07-30 15:58:51 Twitter for iPhone This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ https://twitter.com/dog_rates/status/891689557279858688/photo/1 13 10 Darla NaN https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 Paper towel 0.170278 False Labrador retriever 0.168086 True Spatula 0.040836 False Labrador retriever 8964 42908
4 891327558926688256 2017-07-29 16:00:24 Twitter for iPhone This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 12 10 Franklin NaN https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 Basset 0.555712 True English springer 0.225770 True German short-haired pointer 0.175219 True Basset 9774 41048

Storing

In [67]:
main_df_clean.to_csv('twitter_archive_master.csv')

Qualities and Tidiness Summary

Analyzing

In [68]:
main_df_clean.describe()
Out[68]:
tweet_id rating_numerator rating_denominator img_num p1_conf p2_conf p3_conf retweet_count favorite_count
count 1.971000e+03 1971.000000 1971.000000 1971.000000 1971.000000 1.971000e+03 1.971000e+03 1971.000000 1971.000000
mean 7.360418e+17 12.223237 10.477423 1.201928 0.594558 1.345850e-01 6.016556e-02 2784.449518 8949.106545
std 6.752810e+16 41.634034 6.853275 0.559020 0.272126 1.010527e-01 5.094156e-02 4697.662893 12267.799790
min 6.660209e+17 0.000000 2.000000 1.000000 0.044333 1.011300e-08 1.740170e-10 16.000000 81.000000
25% 6.758656e+17 10.000000 10.000000 1.000000 0.363091 5.339800e-02 1.608055e-02 628.500000 1997.000000
50% 7.088343e+17 11.000000 10.000000 1.000000 0.587764 1.173970e-01 4.944380e-02 1367.000000 4147.000000
75% 7.880951e+17 12.000000 10.000000 1.000000 0.847827 1.955655e-01 9.153815e-02 3239.000000 11402.500000
max 8.924206e+17 1776.000000 170.000000 4.000000 1.000000 4.880140e-01 2.734190e-01 79515.000000 132810.000000

Tweets Sources

98% percent of the tweets came from iphone

In [69]:
main_df_clean.source.value_counts().plot(kind='pie',figsize=(10,10), fontsize=10, autopct='%1.1f%%')
plt.title('Tweets Sources', size=15)
plt.ylabel('');

Dog names

In [92]:
plt.figure(figsize=(12,10))
sns.barplot(y=main_df_clean.name.value_counts().head(5).values, x=main_df_clean.name.value_counts().head(5).index, alpha=0.7)
plt.title('Top 5 Frequent Dogs name', size=15)
plt.xlabel('Dog name', size=12)
plt.ylabel('Frequency', size=12)
plt.show();

Charlie is the most common dog's name

Favourite count and Retweets

In [71]:
plt.figure(figsize=(10,7))
plt.subplot()
plt.title('Retweets', size=15)
sns.distplot(main_df_clean.retweet_count, color = 'green');
/Users/abdulazizalabdullatif/opt/anaconda3/lib/python3.8/site-packages/seaborn/distributions.py:2551: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).
  warnings.warn(msg, FutureWarning)
In [72]:
plt.figure(figsize=(10,7))
plt.subplot()
plt.title('Favorite', size=15)
sns.distplot(main_df_clean.favorite_count, color = 'blue');
/Users/abdulazizalabdullatif/opt/anaconda3/lib/python3.8/site-packages/seaborn/distributions.py:2551: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).
  warnings.warn(msg, FutureWarning)
In [73]:
# Correlation between numerical 'retweet_count','favorite_count', 'rating_numerator','rating_denominator'
num_cols_data = (main_df_clean[['retweet_count','favorite_count', 'rating_numerator','rating_denominator']])
matrix = num_cols_data.corr()
f, ax = plt.subplots(figsize=(20, 10))

sns.heatmap(matrix, vmax=.8, square=True, cmap="Blues");

As shown in the above charts and heatmap there is a strong correlation between favourite and retweet.

In [74]:
plt.figure(figsize=(15,10))
main_df_clean.retweet_count.groupby([main_df_clean.timestamp.dt.year, main_df_clean.timestamp.dt.month]).mean().plot(kind='line')
main_df_clean.favorite_count.groupby([main_df_clean.timestamp.dt.year, main_df_clean.timestamp.dt.month]).mean().plot(kind='line')
plt.title('The change of Retweet and Favourite count during time')
plt.xlabel('Time (year,month)')
plt.ylabel('Tweets')
plt.legend(('Retweet count','Favourite count'), fontsize=15);

This is shows that retweets and favourite both increases during time. However, there is a big different in number, which keep increasing during time pass.

Dog Stage

In [75]:
main_df_clean.groupby(['dog_stage']).breed_dog.count()
Out[75]:
dog_stage
doggo              54
doggo, floofer      1
doggo, pupper       7
doggo, puppo        1
floofer             7
pupper            166
puppo              21
Name: breed_dog, dtype: int64

Due to the high number of pupper stage dogs, they are showing more number on breed dog

Dog stage (Retweet annd Favorite)

In [76]:
plt.figure(figsize=(15,10))
sns.boxplot(x=main_df_clean.dog_stage, y=main_df_clean.retweet_count)
plt.title('Retweets for each Dog Stages', size=13)
plt.xlabel('Dog Stage')
plt.ylabel('Retweets')
plt.ylim(0,13000);
In [77]:
plt.figure(figsize=(15,10))
sns.boxplot(x=main_df_clean.dog_stage, y=main_df_clean.favorite_count)
plt.title('Favorite count for each Dog stage', size=13)
plt.ylabel('Favorite count')
plt.xlabel('Dog Stage')
plt.ylim(0,50000);
In [ ]: